Forum Discussion
QuickBaseCoachD
7 years agoQrew Captain
I do not know how to get a button appearance in an email Notification.
But if you want to control where the user lands after saving you can use this format here
var text URL =
$URLONE
& "&NextURL=" & URLEncode($URLTWO) ;
The above says to do URLONE and then upon save go the URLTWO. So for you, you can set the Everyone on the Internet page to land on the Home Page as the "NextURL" upon save, except their Dashboard will be a big Rich Text element to say Thank You.
You can have a look at this code here
But if you want to control where the user lands after saving you can use this format here
var text URL =
$URLONE
& "&NextURL=" & URLEncode($URLTWO) ;
The above says to do URLONE and then upon save go the URLTWO. So for you, you can set the Everyone on the Internet page to land on the Home Page as the "NextURL" upon save, except their Dashboard will be a big Rich Text element to say Thank You.
You can have a look at this code here
var text URLONE= URLRoot() & "db/" & Dbid() & "?a=er&rid=" & [Record ID#];
//& "&dfid=11"&"&ifv=20"; // in my testing I commented that out
var text URLTWO = "https://mycompany.quickbase.com/db/xxxxxx";
var text URL =
$URLONE
& "&NextURL=" & URLEncode($URLTWO);
"<a class=\"QBU_Button2 Vibrant Success\" href=" & $URL & ">" & "Confirm Ownership" & "</a>"