Author |
|
Giampaolo Guest Group
Joined: 10 November 2003
Online Status: Online Posts: 262
|
Posted: 28 July 2005 at 12:17pm | IP Logged
|
|
|
Can we set the e-mail options for "Read receipt requested", "Priority", "Send confirmation", etc.?
Thanks
|
Back to Top |
|
|
Alex AfterLogic Support
Joined: 19 November 2003
Online Status: Offline Posts: 2206
|
Posted: 28 July 2005 at 12:55pm | IP Logged
|
|
|
Yes, this can be via adding custom message headers. However, there is no common standard for this so every mail program uses it own headers. Common practice is include all headers which are used for this purpose.
For example, to add Read-Receipt:
Message.AddHeader "Return-Receipt-To", "jdoe@domain.com"
Message.AddHeader "Disposition-Notification-To", "jdoe@domain.com"
Priority is usually be set via 2 headers (X-Priority, X-MSMail-Priority) which have the following values:
X-Priority: 1
X-MSMail-Priority: High
X-Priority: 3
X-MSMail-Priority: Normal
X-Priority: 5
X-MSMail-Priority: Low
Entire list for X-Priority:
1 (Highest)
2 (High)
3 (Normal)
4 (Low)
5 (Lowest)
For example, to set high priority:
Message.AddHeader "X-Priority", "1"
Message.AddHeader "X-MSMail-Priority", "High"
As for send confirmation, it requires bounced mail processing since this is the most reliable way to determine if the message was delivered or not.
Regards,
Alex
|
Back to Top |
|
|