How do i send an smtp email with the company logo?
Hi @Vicky_Teng ,
Could you please have view on the below thread. it might helpful to achieve your requirement.
Summarizing the steps.
- Create system.net.mail.attachment variable and assign the variable with the image file path. sample below.
oAttachment = new Attachment(“test.png”)
- Now create content ID like below.
oAttachment.ContentId = “ImageContent1”
-
Prepare Emailbodystring with the html content and add the content id and use alt text of image.
-
send smtp mail message activity with the string body prepared above. thanks.
Hi @Vicky_Teng ,
try is body html set to true in the send SMTP mail message activity properties. thanks.
thank you !
your welcome @Vicky_Teng