Hello,
I am using Jmail to trigger welcome emails, news letter etc from my sites, in recent tiem I find than when downloaded on outlook express or outlook norton anti spam and other anti spam filters are seeing this mails as spam.
I can only guess it is because there is no header from outlook or so.
Is there any think I can add to my scripts to avoid this, I enclose a script sample below:
Code:
var msgTemplate = Server.CreateObject("JMail.Message");
msgTemplate.From = "me@mysite.com";
msgTemplate.FromName = "www.mysite.com";
msgTemplate.ContentType = "text/html";
msgTemplate.Subject = subject;
msgTemplate.Body = 'html tags and text going here';
msgTemplate.AddRecipient("%%email%%");
var mMerge = Server.CreateObject("JMail.MailMerge");
mMerge.MailTemplate = msgTemplate;
mMerge.BulkMerge(rsCust, false, "mail.mysite.com");
Thanking you for any help