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:
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.
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:
- Create a button object.
- Insert the following code into the On Click event of the button object:
Kod:
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.