aspNetEmail

EmailMessage.ReturnReceipt Property

Sets an optional mail read receipt to be notified when an email is recieved.

public bool ReturnReceipt {get; set;}

Remarks

Not all mail readers acknowledge this property.

Example

[C#]
		EmailMessage msg = new EmailMessage( "mail.MyCompany.com" );
		msg.FromAddress = "me@MyCompany.com";
		msg.To = "you@YourCompany.com";
		msg.Subject = "Daily Newsletter";
		msg.Body = "Here is our daily newsletter.....";
		msg.ReturnReceipt = true;
		msg.Send();
		
[Visual Basic]
		Dim msg As New EmailMessage("mail.MyCompany.com")
		msg.FromAddress = "me@MyCompany.com"
		msg.To = "you@YourCompany.com"
		msg.Subject = "Daily Newsletter"
		msg.Body = "Here is our daily newsletter....."
		msg.ReturnReceipt = True
		msg.Send()
		

See Also

EmailMessage Class | aspNetEmail Namespace