Forum Discussion
QuickBaseCoachD
7 years agoQrew Captain
Corey, it sounds like you are not familiar with an automated email Notifications.
https://help.quickbase.com/user-assistance/notification.html
is that what you want after all? Push a button and the email gets sent automatically?
If so, then you want to set up an email notification based on a checkbox field being changes., Then use my earlier suggestion above to make a button to fire the email off.
var bool NewToggle = not [Toggle field to send email];
var text URL = URLRoot() & "db/" & "?act=API_EditRecord&rid=" & [Record ID#]
& "&_fid_80=" & $NewToggle;
"javascript:" &
"$.get('" &
$url &
"',function(){" &
"$.jGrowl('Email has been sent', {life: 5000, theme: 'jGrowl-green'});" &
"});" &
"void(0);
https://help.quickbase.com/user-assistance/notification.html
is that what you want after all? Push a button and the email gets sent automatically?
If so, then you want to set up an email notification based on a checkbox field being changes., Then use my earlier suggestion above to make a button to fire the email off.
var bool NewToggle = not [Toggle field to send email];
var text URL = URLRoot() & "db/" & "?act=API_EditRecord&rid=" & [Record ID#]
& "&_fid_80=" & $NewToggle;
"javascript:" &
"$.get('" &
$url &
"',function(){" &
"$.jGrowl('Email has been sent', {life: 5000, theme: 'jGrowl-green'});" &
"});" &
"void(0);