Advertisement
C_Volume2 OLE/ COM/ DCOM/ Active-X #83178

Mail notification

This code send a message to a specified address as a notification of the main mail message. Usually tells you if the message has been read or deleted.

AI

ملخص الذكاء الاصطناعي: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

كود المصدر
original-source
<%
' MAIL NOTIFICATION, by RaS! ([email protected]) 2001
' This simple example send a mail to the main address and a
' notify message to another one. You will receive a message that
' tell you if the main message has been read or deleted.
Set MyMail = Server.CreateObject("CDONTS.NewMail") 
 MyMail.From = "[email protected]"
 MyMail.To = "[email protected]"
 MyMail.Subject = "Hello World!"
 MyMail.Body = "Email test with notify"
 MyMail.Value("Disposition-Notification-To")="[email protected]"
 MyMail.Send
Set MyMail = Nothing 
%>
التعليقات الأصلية (3)
مسترجع من Wayback Machine