How to reply to a mail in outlook

You can use this if you like for non html:

MailReply.xaml (10.7 KB)

Reply :
image

Reply All:

image

image

nothing fancy, just adding few lines. Might saves others time.

subject = "Re: " + email.Subject

body = newReply+Environment.NewLine+Environment.NewLine+"From: "+ email.From.Address+Environment.NewLine+"Sent: "+email.Headers.Get("date")+Environment.NewLine+"To: "+string.Join(",",email.To) +Environment.NewLine+"Cc: "+string.Join(",",email.CC)+Environment.NewLine+"Subject: "+email.Subject+ Environment.NewLine+ email.Body
5 Likes