CDO Read Receipt

  • Thread starter Thread starter G
  • Start date Start date
G

G

Hello,

I frequently use the following code on my various sites:

<%
Set bc = Server.CreateObject("MSWC.BrowserType")
Set objMessage = CreateObject("CDO.Message")
objMessage.Subject = "Invite from domain.com"
objMessage.Sender = "(e-mail address removed)"
objMessage.To = "(e-mail address removed)"
objMessage.Bcc = ""
objMessage.Cc = ""
objMessage.HTMLBody ="HTML body here"
objMessage.Send
%>


Is there any way for the email generated to "request a read receipt"? I
have had a look on Google, but I am not able to find what I need - maybe I
am not searching for the right thing,
Server is Windows Server 2003 Web Edition, running IIS 6.

Regards,

Gary.
 
G said:
Hello,

I frequently use the following code on my various sites:

<%
Set bc = Server.CreateObject("MSWC.BrowserType")
Set objMessage = CreateObject("CDO.Message")
objMessage.Subject = "Invite from domain.com"
objMessage.Sender = "(e-mail address removed)"
objMessage.To = "(e-mail address removed)"
objMessage.Bcc = ""
objMessage.Cc = ""
objMessage.HTMLBody ="HTML body here"
objMessage.Send
%>


Is there any way for the email generated to "request a read receipt"? I
have had a look on Google, but I am not able to find what I need - maybe I
am not searching for the right thing,
Server is Windows Server 2003 Web Edition, running IIS 6.

Regards,

Gary.
 

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

Back
Top