Author |
|
raindm Groupie
Joined: 31 January 2008 Location: Israel
Online Status: Offline Posts: 44
|
Posted: 22 February 2009 at 11:10am | IP Logged
|
|
|
Hello
When i send an email i use:
objMailer.BodyHtmlText = HtmlContent;
to fill the message content.
HtmlContent includes an HTML page i want to send by email.
When i send an email to Gmail and look into the header of the email it seems the "Content-Type:" in the header is text/plain;
Is there a way to enforce the MailBee component to send with "Content-Type:" of text/html?
Since i obviously send HTML content not Plain text content..
|
Back to Top |
|
|
Andrew AfterLogic Support
Joined: 28 April 2006 Location: United States
Online Status: Offline Posts: 1189
|
Posted: 24 February 2009 at 4:21am | IP Logged
|
|
|
Try tuning MailMessage.Builder, especially, HtmlToPlainMode property.
If this doesn't help, please provide us with full headers block of the message.
Best regards,
Andrew
|
Back to Top |
|
|
raindm Groupie
Joined: 31 January 2008 Location: Israel
Online Status: Offline Posts: 44
|
Posted: 25 February 2009 at 2:39am | IP Logged
|
|
|
settings &nbs p; objMailer. Message.Builder.HtmlToPlainMode = HtmlToPlainAutoConvert.Never; will work with gmail.
and the header contains 'text/html' now and not 'text/plan'.
I am using version 4.0.2.105 .
Thanks.
|
Back to Top |
|
|