If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > ASP > Emails triggered from web site (news letter) seen as spam by filters

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 10-16-04, 05:18
oliflorence oliflorence is offline
Registered User
 
Join Date: Aug 2004
Posts: 96
Emails triggered from web site (news letter) seen as spam by filters

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
Reply With Quote
  #2 (permalink)  
Old 10-17-04, 19:13
rokslide rokslide is offline
Registered User
 
Join Date: Nov 2003
Location: Christchurch, New Zealand
Posts: 1,617
I have never used JMail for this so I'm not sure entirely how it works. But often emails are blocked because of the subject line or the wording of the content. By changing the words you use you can often get past them.

Review your content and see if there is anything that might be alerting the spam filters...
Reply With Quote
  #3 (permalink)  
Old 10-17-04, 23:08
MrWizard MrWizard is offline
Registered User
 
Join Date: Mar 2003
Location: Atlanta, GA
Posts: 191
Often, if the "reply" email address (or "Return address") does not match the domain of the smtp server sending it, that's looked at as a "red flag". Make certain to specify the reply to or return email address before sending.

Tim
__________________
Tim
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On