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