email using MIME. Please help.
-
Hi i want to write code to send email with embedded image. i have used system.web.mail reference, and i have converted the image to base64 encoded data. Now anyone please tell me how to embed this to the email? Anyone know the code? Do i need to specify headers like "MIME Version" etc...? please advice. Thanks in advance. Ali
-
Hi i want to write code to send email with embedded image. i have used system.web.mail reference, and i have converted the image to base64 encoded data. Now anyone please tell me how to embed this to the email? Anyone know the code? Do i need to specify headers like "MIME Version" etc...? please advice. Thanks in advance. Ali
-
Don't you have the image as a file? Then you can simply create a MailAttachment object from the file and add to the mail.
--- b { font-weight: normal; }
No, It's a news letter. I have to show the image in email body. I cannot use image source as URL. It's for news letter sending.
-
No, It's a news letter. I have to show the image in email body. I cannot use image source as URL. It's for news letter sending.
-
Hi Guffa, Can i use an attachment to be shown in the mail body like what we see in newsletters? if so, please tell me how... thank you ali
-
Hi Guffa, Can i use an attachment to be shown in the mail body like what we see in newsletters? if so, please tell me how... thank you ali
Using the mime repositry. http://www.ietf.org/rfc/rfc1521.txt[^] I haven't used it, but I know your going to need a custom smtp option, as smtp class doesn't generate multi/part content. Gav