Forum Discussion
JackFretwell
7 years agoQrew Assistant Captain
Thank you for replying, I tried this, the differences being "a=q&qid=" which I'm really not sure what it does and enclosing the formula variables in <>, all I get is a really long web string in the browser.
var text URLONE = URLRoot() & "db/" & [_DBID_ACTIVITIES]
& "?a=API_AddRecord&_fid_148=" & URLEncode ([Record ID#])
& "&_fid_157=" & [Related Company]
& "&_fid_7=Email Sent"
& "&_fid_142=" & ToFormattedText(Now(), "DDMMYYYYHHMMSS")
& "&apptoken=cwfcy7gdzqrsyncqbi2bn4u4kr";
var text URLTWO = URLRoot() & "db/" & [_DBID_CONTACTS] & "?a=q&qid=1";
var text URLTHREE = "mailto:"& URLEncode([Email]);
"<a href=" &
$URLONE
& "&rdr="& URLEncode($URLTWO)
& URLEncode("&rdr="& URLEncode($URLTHREE))
& "></a>"
Do you know what is meant to happen with the variables enclosed in <a href anchor?
: /
var text URLONE = URLRoot() & "db/" & [_DBID_ACTIVITIES]
& "?a=API_AddRecord&_fid_148=" & URLEncode ([Record ID#])
& "&_fid_157=" & [Related Company]
& "&_fid_7=Email Sent"
& "&_fid_142=" & ToFormattedText(Now(), "DDMMYYYYHHMMSS")
& "&apptoken=cwfcy7gdzqrsyncqbi2bn4u4kr";
var text URLTWO = URLRoot() & "db/" & [_DBID_CONTACTS] & "?a=q&qid=1";
var text URLTHREE = "mailto:"& URLEncode([Email]);
"<a href=" &
$URLONE
& "&rdr="& URLEncode($URLTWO)
& URLEncode("&rdr="& URLEncode($URLTHREE))
& "></a>"
Do you know what is meant to happen with the variables enclosed in <a href anchor?
: /
EverettPatterso
7 years agoQrew Captain
That was part of someone else's formula, I don't think you need that <a href anchor
var text URLONE = URLRoot() & "db/" & [_DBID_ACTIVITIES]
& "?a=API_AddRecord&_fid_148=" & URLEncode ([Record ID#])
& "&_fid_157=" & [Related Company]
& "&_fid_7=Email Sent"
& "&_fid_142=" & ToFormattedText(Now(), "DDMMYYYYHHMMSS")
& "&apptoken=cwfcy7gdzqrsyncqbi2bn4u4kr";
var text URLTWO = URLRoot() & "db/" & [_DBID_CONTACTS] & "?a=q&qid=1";
var text URLTHREE = "mailto:"& URLEncode([Email]);
$URLONE
& "&rdr="& URLEncode($URLTWO)
& URLEncode("&rdr="& URLEncode($URLTHREE))
var text URLONE = URLRoot() & "db/" & [_DBID_ACTIVITIES]
& "?a=API_AddRecord&_fid_148=" & URLEncode ([Record ID#])
& "&_fid_157=" & [Related Company]
& "&_fid_7=Email Sent"
& "&_fid_142=" & ToFormattedText(Now(), "DDMMYYYYHHMMSS")
& "&apptoken=cwfcy7gdzqrsyncqbi2bn4u4kr";
var text URLTWO = URLRoot() & "db/" & [_DBID_CONTACTS] & "?a=q&qid=1";
var text URLTHREE = "mailto:"& URLEncode([Email]);
$URLONE
& "&rdr="& URLEncode($URLTWO)
& URLEncode("&rdr="& URLEncode($URLTHREE))