Welcome to the Indigo Rose Software discussion forums! You will need to sign up for a forum account and login before you can post. Need help? View the Forum FAQ.
I do not know exactly what you intend to do, but in the documentation this function may help you perhaps. File.OpenEmail
Opens the user's default email client with an email address in the "To" field. Example 1
File.OpenEmail("[email protected]?subject=I need help", SW_MAXIMIZE);
Opens the user's default email client, with "[email protected]" in the To: field and "I need help" in the subject line, and maximizes the email client's program window. Example 2
File.OpenEmail("[email protected]");
Opens the user's default email client, with "[email protected]" in the To: field. The email program's window is opened normally (not minimized or maximized). Example 3
File.OpenEmail("[email protected]?subject=Thanks %21");
Sends an email to me, using the user's default email client, with "Thanks!" automatically entered in the subject line. Note: The exclamation mark is URL encoded as %21 because ! is a special character in URLs.
Also you can search in the forum for some plugings.
This website is for sale! amsplugins.com is your first and best source for all of the information you’re looking for. From general topics to more of what you would expect to find here, amsplugins.com has it all. We hope you find what you are searching for!
Last edited by DTX; 08-04-2017, 02:16 PM.
Reason: found the link
Comment