Forum Discussion
MarkShnier__You
Qrew Legend
6 years agoAre you emailing using the Mailto syntax? Or via email Notifications.
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------
- Curtis_M6 years agoQrew CadetHere is my code ([Testing Text Input] is the multi-line text field):
var text Return = URLEncode("\n"); //variable used for return/space function in a body of text
//////////////////////////////////////////////////
"MailTo:" & URLEncode("Curtis Middleton")
// the above text invokes the mail client, and creates the TO line
& "&cc=" & URLEncode("") & "; "
// the above text invokes the mail client, and creates the CC line
& "&subject=Email To A Stakeholder"
// the above text does the subject line, below that is the body
&"&body=Hi User,"
& $Return & $Return
& [Testing Text Input]
& $Return & $Return
& "Regards,"
& $Return
& "Curtis"
------------------------------
Curtis Middleton
------------------------------- MarkShnier__You6 years ago
Qrew Legend
I did a test and by making this change
& URLEncode([Testing Text Input])
It worked for me on gmail webmail.
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------- Curtis_M6 years agoQrew CadetAh! Of course it was that simple of a fix. I just tested and confirmed it works with Outlook as well.
Thank you so much! Have a great weekend.
------------------------------
Curtis Middleton
------------------------------