Please enable JavaScript to view this site.

Navigation: Advanced topics > Events > Predefined actions

Events. Send email with new data

Scroll Prev Next More

 

Send email with new data action allows sending an email containing information about new data in the table.  

 

You can edit several parameters: the text and the subject of the message, the sender and recipient email addresses.

 

Available in the following events:

Add page: Before record added

Add page: After record added

Edit page: Before record updated

Edit page: After record updated

send_email_with_new_data_select_action

 

Note: To use this action, you have to set up the Email settings. Press button email_settings_button_events  on the toolbar or write the code manually.

 

 

 

Note: To specify which table fields to email, edit the values assigned to msg variable.

 

'**********  Send email with new data  ************

Dim tmpDict, msg, ret
msg =""
msg = msg & "Name : " & values("name") & vbcrlf
msg = msg & "Email : " & values("email") & vbcrlf
msg = msg & "Age : " & values("age") & vbcrlf
 
set tmpDict = CreateObject("Scripting.Dictionary")
tmpDict("to")="test@test.com"
tmpDict("subject")="New data record"
tmpDict("body")=msg
set ret=runner_mail(tmpDict)
if not ret("mailed") then
  response.write ret("message")
end if

See also:

runner_mail function

Send mass email to all users

Send an email with attachment

Send an email to selected users

Send simple email

Send email with old data

Email selected records

How to email selected records as separate PDF files