This topic is locked
[SOLVED]

 send email

10/12/2020 11:45:08 PM
PHPRunner General questions
J
Jan author

In the example below I can send an email.
$email="test@test.com";
$subject="test";
$msg.= "Your Emailadres: ".$values["email"]."\r\n";
$ret=runner_mail(array('to' => $email, 'subject' => $subject, 'body' => $msg, 'from'=>$from));

if(!$ret["mailed"])

echo $ret["message"];
But I want to pad the variable $email with this value:

. $ values ["email"] ......
What is the correct code? Thanks