Forum Discussion
QuickBaseCoachD
8 years agoQrew Captain
The ? is the indicator that the rest of the parameters follow, so it needs to be first.
"MailTo:"& URLEncode([Contact Main Email])
& "?subject=" & URLEncode("Store " & [Store No] & " POS Checkout Site Readiness Survey")
& "&cc="& URLEncode([Contact Secondary Email])
& "&bcc=email@email.com;Fred.flintstone@bedrock.com
"MailTo:"& URLEncode([Contact Main Email])
& "?subject=" & URLEncode("Store " & [Store No] & " POS Checkout Site Readiness Survey")
& "&cc="& URLEncode([Contact Secondary Email])
& "&bcc=email@email.com;Fred.flintstone@bedrock.com
QuickBaseCoachD
8 years agoQrew Captain
I tested this code and it works in Gmail and Outlook as mail clients
var text URLONE = URLRoot() & "db/" & Dbid() & "?act=API_EditRecord&rid=" & ToText([Record ID#])
& "&_fid_14=" & ToText(Today());
var text URLTWO= "mailto:" & "fred.flintstone@bedrock.com"
& "?subject=" & URLEncode("this is the subject")
& "&cc=barney.rubble@gmail.com"
& "&bcc=email@email.com;fred.flintstone@gmail.com"
& "&from=mshnier@gesco.ca";
$URLONE
& "&rdr=" & URLEncode($URLTWO)
Can you post your code that is not working? maybe there is an extra space somewhere or a syntax error.
var text URLONE = URLRoot() & "db/" & Dbid() & "?act=API_EditRecord&rid=" & ToText([Record ID#])
& "&_fid_14=" & ToText(Today());
var text URLTWO= "mailto:" & "fred.flintstone@bedrock.com"
& "?subject=" & URLEncode("this is the subject")
& "&cc=barney.rubble@gmail.com"
& "&bcc=email@email.com;fred.flintstone@gmail.com"
& "&from=mshnier@gesco.ca";
$URLONE
& "&rdr=" & URLEncode($URLTWO)
Can you post your code that is not working? maybe there is an extra space somewhere or a syntax error.