This topic is locked
[SOLVED]

 How to send Fullname with Emailadress

12/23/2020 6:39:49 PM
PHPRunner General questions
W
Wachsmann author

Hello, I want to send emails with runner_mail. How can I send my fullname with my Emailadress?

$from="Boris Becker<no-reply@xyz.de>";

But I get an Error.

Myr0n 12/24/2020

According to the example "Send email with From and FromName fields" in documentation is like this:



$email="test@test.com";

$message="Hello there\nBest regards";

$subject="Sample subject";

$from="bgates@microsoft.com";

$fromName="Bill Gates";

runner_mail(array('to' => $email, 'subject' => $subject, 'body' =>$message, 'fromName'=> $fromName, 'from' => $from));
W
Wachsmann author 12/24/2020



According to the example "Send email with From and FromName fields" in documentation is like this:



$email="test@test.com";

$message="Hello there\nBest regards";

$subject="Sample subject";

$from="bgates@microsoft.com";

$fromName="Bill Gates";

runner_mail(array('to' => $email, 'subject' => $subject, 'body' =>$message, 'fromName'=> $fromName, 'from' => $from));



Great. Thank you for the info. Had read it in the documentation too.

Merry Christmas from Germany :-)