c# - EWS reply mail with original body -
when want reply mail via ews below, if retrieve email body in html format below. how can put reply text conveniently, @ top of original message?
although can parse html, wondering there smart way doing it. thank you
emailmessage mesg = email.createreply(false).save(); mesg.load(); messagebody lvmessagebody = mesg.body;
you should able setting bodyprefix
property on reply. see https://msdn.microsoft.com/en-us/library/office/dn617213(v=exchg.150).aspx
Comments
Post a Comment