I have a requirement like I want to have MAIL TRAIL functionality in the dot net. I have written a windows service which will trigger a mail to particular recipient.
If recipient does not respond to that mail then service again sends a reminder mail like follow-up mail.
So whenever mail will be sent again to a recipient it should be treated as a MAIL TRAIL. Like previous mail should also be tracked like at what date previous mail sent).
Note - Just we do reply/reply-all in Gmail/Outlook, then previous mail will also be copied along with current mail. I am using ASP.NET and C# with in-built System.Net SMTP feature to send mail.
Please suggest any solution.
Thanks in advance.