|
|
To send a simple email use Send simple email action.
Note: Change the values listed in
red to match your specific needs.
// ********** Send simple email ************
$email="test@test.com";
$message="Hello there\nBest regards";
$subject="Sample subject";
runner_mail(array('to' => $email, 'subject' => $subject, 'body' => $message));
|
You can send HTML email as well:
// ********** Send HTML email ************
$email="test@test.com";
$message="Hello there\n<b>Best regards</b>";
$subject="Sample subject";
runner_mail(array('to' => $email, 'subject' => $subject, 'htmlbody' => $message, 'charset' => 'UTF-8'));
|
More info on runner_mail function.
|