Cannot send mail from ASP using CDO

R

Rajani

Hi friends,

I am sending mail from ASP program. My server is win 2k, IIS 5. SMTP
server is configured.

I am generating a report(purchase order) and the same sending as an email to
the supplier. upto last week it was sending well. Now its returning bounce
mail.

in the c:\inetpub\mailroot\badmail contains the file(.bdr). The contents of
the file are

"From: postmaster@rajani
To: (e-mail address removed)
Date: Tue, 6 Jun 2006 11:22:33 +0800
MIME-Version: 1.0
Content-Type: multipart/report; report-type=delivery-status;
boundary="9B095B5ADSN=_01C680B8C044750C00000003rajani"
Message-ID: <8wSA1XvpF00000003@rajani>
Subject: Delivery Status Notification (Failure)

This is a MIME-formatted message.
Portions of this message may be unreadable without a MIME-capable mail
program.

--9B095B5ADSN=_01C680B8C044750C00000003rajani
Content-Type: text/plain; charset=unicode-1-1-utf-7

This is an automatically generated Delivery Status Notification.

Delivery to the following recipients failed.

(e-mail address removed)

"

the same message is returniing to the FROM email.

I have included CC, BCC options also. The mail is successfully sending to
them but not to TO.

My code is ...

dim sndMail,cdoconfig,personalmessage
set sndMail=server.CreateObject("CDO.Message")
set cdoconfig=server.CreateObject("CDO.configuration")
personalmessage=replace(request("txtmsg"),vbcrlf,"
")

with sndMail

..Fields("urn:schemas:mailheader:disposition-notification-to")=receiptto
.Fields("urn:schemas:mailheader:return-receipt-to") =receiptto
.From =session("email")
.To =receiptto
.CC="(e-mail address removed)"
.BCC =session("email")
.Subject="Carton PO ( " & job & " ) from Montex"
.HTMLBody =personalmessage & "

" & request("txtbody")
.DSNOptions=14
.Fields.update
.Send
end with

If I send mail from outlook, it is sending successful.

whats the problem.Can anyone help me?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,743
Messages
2,569,478
Members
44,898
Latest member
BlairH7607

Latest Threads

Top