Please enable JavaScript to view this site.

Navigation: Advanced topics > Events > Predefined actions

Events. Send email with old data

Scroll Prev Next More

 

Send email with old data record action allows, upon changing the record, emailing the previous data.

 

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

 

Available in the following events:

Edit page: Before record updated

Edit page: After record updated

List page: Before record deleted

send_email_with_old_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 old data  ************
$email="test@test.com";
$from="admin@test.com";
$msg="";
$subject="New data record";
 
$msg.= "Name: ".$oldvalues["name"]."\r\n";
$msg.= "Email: ".$oldvalues["email"]."\r\n";
$msg.= "Age: ".$oldvalues["age"]."\r\n";
 
$ret=runner_mail(array('to' => $email, 'subject' => $subject, 'body' => $msg, 'from'=>$from));
if(!$ret["mailed"])
echo $ret["message"];

See also:

runner_mail function

Send mass email to all users

Send an email with attachment

Send an email to selected users

Send email with new data

Send simple email

Email selected records

How to email selected records as separate PDF files

 

Created with Help+Manual 7 and styled with Premium Pack Version 3 © by EC Software