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.
* VFP code to generate the email
* assume loMail is your message object
WITH loMail
.Subject = "[b]XYZ[/b]" && where XYX is the unique subject that you with to trap
.HTMLBody = [<p>Please click this link: <a href="[b][URL unfurl="true"]http://myserver.com/myscript.php?subject=XYZ[/URL][/b]">Click here</a></p>]
.To = "" && fill in the To, CC, etc. as appropriate
.Send
ENDWITH
// Server-side code to trap the subject line
// Assumes PHP, but other languages would be similar
$my_subject = $_GET['subject'];
// The variable $my_subject now contains the desired subject