Sending email with multiple attachments

Hi,

Can someone help me please. How to send email with multiple attachments. Each attachment should be inserted inside the body of the email.

Thank you!

You can find an option in SendOutlookMail Activity → Attachment collection.

You can pass an array or list to it. (I am not sure what datatype it accepts, but I should be a collection)

Check below post for more info:

hi @Aiza

make use of html to send attachments inside the body of the mail.

ex : below is one of the example to send multiple images inside body of the email

<!DOCTYPE html>
<html>
<body>

<img src="smiley1.gif" alt="Smiley face" width="42" height="42">
<img src="smiley2.gif" alt="Smiley face" width="42" height="42">
<img src="smiley3.gif" alt="Smiley face" width="42" height="42">
<img src="smiley4.gif" alt="Smiley face" width="42" height="42">

</body>
</html>

Regards
Ajay

Hi Rocki_Jan,

Will that work if the format I want is like this:

Dear All,

1st attachment

2nd attachment

My concern actually is how to place the attachments in certain area within the body of my message.

Thank you very much for your help.

Sorry. format should be like this:

Body of message…
1st attachment

body of message…
2nd attachment

I am not sure how that works… never tried this before… Attaching attachments in the body.