Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
dim emlObject as new Emailer
emlObject.MailTo = [b]Destination Email Address[/b]
emlObject.From = [b]Senders Email Address[/b]
emlObject.Subject = [b]Email Subject[/b]
emlObject.BodyFormat = [b] should pop up an enumeration to pick from[/b]
emlObject.SmtpServer = [b]Name or IP of your SMTP Server[/b]
if emlObject.EmailCust("",[b]Message Body[/b]) then
messagebox.show("Email Sent!")
else
messagebox.show("Email failed to send!")
end if