Hi @Sn0white,
It is possible to send attachments and converted PDF via a single Flow, steps as below:
1. Initialize an array variable to hold these file name and file content;
2. Get file content store in the SharePoint folder;
3. Create copy of these files, cause convert file action only supports files stored in onedirve, so we should store these files into onedrive, you could add an action to delete these copied files;
4. Use Convert file action convert them into PDF;
5. Append these files into the attachment array variable:
{
"Name": "file Name",
"ContentBytes": "file content"
}
6. Send an email, append the array variable into the attachment field.




Best Regards,
Community Support Team _ Lin Tu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.