|

How do I... ?

AnswerList of Questions


Add an Email Link with Subject


AutoPlay Media Studio includes a built in action to open a blank e-mail in the user's default mail program. As an example, we will create a button that, when clicked, links to your company's e-mail address:


1. Create a button object.


2. Insert the following code into the On Click event of the button object:


image

File.OpenEmail("you@yourdomain.com?subject=Your Subject Here", "SW_SHOWNORMAL");


When the user clicks on the button, their default mail program will open a blank e-mail message to "you@yourdomain.com" with "Your Subject Here" as the subject.


image

|