Author |
|
slim Newbie
Joined: 24 January 2013 Location: Australia
Online Status: Offline Posts: 3
|
Posted: 29 January 2013 at 7:21pm | IP Logged
|
|
|
hi
i am being asked to create a 'Reply' button to open an email in Outlook in reply mode.
i am getting the email using IMAP and saving it locally like this:
msg.SaveMessage("C:\\... .eml");
new MsgConvert().EmlToMsg("C:\\... .eml", "C:\\... .msg");
I can open the email in outlook like this: Process.Start("C:\\... .msg");
Have you any idea how I can open it directly in reply mode?
Thanks so much
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6103
|
Posted: 30 January 2013 at 12:25am | IP Logged
|
|
|
By setting MsgConvert.MsgAsDraft property to true, you can make the message editable as draft. MailBee cannot create "reply" version of MSG message though.
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|