Author |
|
manigmv Newbie
Joined: 30 September 2008 Location: India
Online Status: Offline Posts: 31
|
Posted: 03 October 2008 at 6:47am | IP Logged
|
|
|
Hello
I tried to get the ack after mail read by recipient,but i am not getting the ack
this is my code
mailer.From.AsString = "test@mydomain.com";
mailer.To.AsString = textBoxTo.Text; mailer.Subject = textBoxSubject.Text;
mailer.Message.ConfirmRead= "test@mydomain.com";
mailer.Message.ConfirmReceipt= "test@mydomain.com";
if (mailer.Send("bounce*@mydomain.com", (string)null))
{
MessageBox.Show("The message was sent successfully");
}
Please advise what is the problem.
Can i get my all acknowledge my 'ack mail box' like bounce mail box?
Thanks
Mani
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6103
|
Posted: 03 October 2008 at 7:00am | IP Logged
|
|
|
Read confirmation will be sent to the test@mydomain.com address only after the message gets received by user and if user agreed to send read confirmation. This will work only if user's email software supports sending confirmations.
As for receipt confirmation, it will be sent if the recipient's mail server supports this feature. Unfortunately, most of mailservers ignore this header.
Regards,
Igor
|
Back to Top |
|
|