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 = "Administrator@domain.com"
objMessage.To = "user@domain.com"
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.

RE: CDO Read Receipt by Hyperactive

Hyperactive
Tue May 10 13:48:01 CDT 2005



"G" wrote:

> 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 = "Administrator@domain.com"
> objMessage.To = "user@domain.com"
> 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.
>
>
>

RE: CDO Read Receipt by Hyperactive

Hyperactive
Tue May 10 13:50:03 CDT 2005

Yes, you can request a read receipt using CDO. Here is a link to an article
on the easiest way to implement this into your code:

http://www.aspfaq.com/show.asp?id=2252