Click here to Skip to main content
15,898,134 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Let me put the rephrase my prev question. From application i have sent a mail with some codes. The email could be viewed from any mobile also, instead of pressing reply and say yes or no to that mail, is there any way to send the reply mail with answer (yes or no) on a single click. I am not seeking for a mobile development related solution but some tricks in the mail message itself.
Posted
Updated 20-Nov-11 21:23pm
v2

1 solution

Since this is WinForms, use the application parameters: Your emailed link executes your application, with the registration code or whatever as an optional parameter.
In your main form load event:
C#
string[] args = Environment.GetCommandLineArgs();
And process them!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900