|
 |
asp_cdo thread: CDO 2000 email not accepted by msn.com
Message #1 by "Diane Schips" <info@M...> on Tue, 31 Jul 2001 17:39:16 -0400
|
|
Awhile ago I sent a post regarding email I send that is rejected by msn.com.
I'm using ASP and CDO 2000 to create the email and sending it out to a
membership list. An email is generated for each member, I'm not
broadcasting the email.
The suggestion was made to look at the headers, and someone asked if I could
post the headers for the list to look at. Other issues arose, and I had to
put this on hold (non-paying, not for profit customer). Now I'd like to
resolve the problem.
Until I get the problem resolved, I'm using Bravenet.com to send out the
emails. Bravenet.com generated emails are recieved with no problem by
msn.com email addresses. The headers associated with bravenet.com emails
are:
Received: from arwen.bravenet.com [63.147.25.152] by email2.
(SMTPD32-6.06) id A0AD360126; Thu, 10 May 2001 23:46:53 -0400
Received: from lotho.sf.bravenet.com (lotho.sf.bravenet.com [172.16.0.14])
by arwen.bravenet.com (Postfix) with ESMTP id 2813F5D78
for <webmaster@T...>; Thu, 10 May 2001 20:48:18 -0700 (PDT)
Received: by lotho.sf.bravenet.com (Postfix, from userid 1010)
id 83A5428B0D; Thu, 10 May 2001 20:48:17 -0700 (PDT)
To: webmaster@T...
Subject: Temple Happenings
From: webmaster@T...
Message-Id: <20010511034817.83A5428B0D@l...>
Date: Thu, 10 May 2001 20:48:17 -0700 (PDT)
X-RCPT-TO: <webmaster@T...>
X-UIDL: 280290583
Status: U
Headers associated with the email I generate are:
Received: from mail.mavweb.net [4.36.115.4] by email2. with ESMTP
(SMTPD32-6.06) id A4CA12A00D0; Mon, 02 Jul 2001 19:33:33 -0400
Received: from mail pickup service by mail.mavweb.net with Microsoft
SMTPSVC;
Mon, 2 Jul 2001 19:32:26 -0400
From: <webmaster@T...>
To: <webmaster@T...>
Subject: Temple Happenings
Date: Mon, 2 Jul 2001 19:32:26 -0400
Message-ID: <009201c1034f$40979460$04732404@w...>
MIME-Version: 1.0
Content-Type: multipart/alternative;
boundary="----=_NextPart_000_0093_01C1032D.B98901A0"
X-Mailer: Microsoft CDO for Windows 2000
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200
Thread-Index: AcEDTz9oqlAk8114Te20jChDz0qhHg==
Content-Class: urn:content-classes:message
X-OriginalArrivalTime: 02 Jul 2001 23:32:26.0606 (UTC)
FILETIME=[40B618E0:01C1034F]
X-RCPT-TO: <webmaster@T...>
X-UIDL: 280291536
Status: U
This has nothing to do with the status of msn.com, as I've been testing by
sending out the email both ways. Bravenet's emails are recieved, mine
aren't.
This is the code I'm using:
open database to recordset of email addresses
database.movefirst
do while not database.eof
emFrom="""sender name"" <sender@T...>"
emTo="""member name"" <member email>"
emSubject = "subject"
emHtml = "<B>This is a test</B>"
emtext = "This is a test"
Set objMsg = Server.CreateObject("CDO.Message")
With objMsg
.To = emTo
.From = emFrom
.ReplyTo = emFrom
.Subject = emSubject
.HTMLBody = emHtml
.TextBody = emText
End With
objMsg.Send
Set objMsg = Nothing
database.movenext
the database stuff is obviously psuedo code. The sender stuff will always
come from someone at TBSofS.org, but not always from the same person. I'm
trying to establish a complete email/newsletter system. The Rabbi, Cantor,
and Religious School Principle will all be able to send out email. The
Religious School will have separate lists for each class, etc. That is if I
can get it working!
Does anyone see why msn.com is rejecting my email? Can anyone offer a
solution?
Thanks,
Diane
|
|
 |