This topic is locked

customize email

3/7/2012 8:21:56 AM
PHPRunner General questions
S
sickacid author

Hi, is possible to send some bold text in email?
// ** Send simple email ****

$email="info@info.com";

$from="info@info.com";

$msg = "<b>Test!<b/>";

$subject="Email Tester MORE+";

$ret=runner_mail(array('to' => $email, 'subject' => $subject, 'body' => $msg, 'from'=>$from));

if(!$ret["mailed"])

echo $ret["message"];// Put your code here.

$result["txt"] = $params["txt"]." Andata!!";

C
cgphp 3/7/2012
Sergey Kornilov admin 3/7/2012

There is one more article - creating and using email templates:

http://www.asprunner.com/forums/topic/19089-sending-templated-email-messages/