Hi
In my asp.net 2.0 application i need to keep track of bounce emails. i am using mailEnable as mailing server. i tried both the replyto and the return-path as bellow. but its not sending bounce emails at bounce@mydomain.com instead it is always sending bounce emails at from@mydomain.com.
the idea is to get all bounce emails on a particular email address and then parse those messages from the bounce email address in my application through POP3 reader.
Can anybody please help me on how can i track my bounce emails
Here is the code snipped that i am using
MailMessage myMail = new MailMessage();
...
Go to the complete details ...