Help! Mail.NewMessage function is working perfectly fine and on click it opens my email in the outlook and this is what I want. But there's a problem in it. If the Outlook app is closed then it opens the dialog box and on the click email can be sent easily but if the outlook is already opened, it doesn't happen.
What to do in case when Outlook is already opened?
I am using the following code:
IF Mail.TryInitializeOutlook THEN
BEGIN
Mail.NewMessage("E-Mail",'','',Subject,'',"Attachement",TRUE);
END;
*This post is locked for comments