Hi,
In the events tab, I want to send a mail using a "From Name"
So my mail code is:
$email=$values['Email'];
$from="abc@gmail.com";
$fromName="Some Name";
$msg="";
$msg.= "Dear ".$values['Name'].",
"."\r\n";
...
...
...
$ret=runner_mail(array('to' => $email, 'subject' => $subject, 'fromName'=> $fromName, 'from' => $from, 'htmlbody' => $msg, 'charset' => 'UTF-8'));
if(!$ret["mailed"])
echo $ret["message"];
Everything else is working, except $fromName.
Is there an issue with the code?
Please help.