[SOLVED] customize emails |
2/23/2012 5:56:05 AM |
PHPRunner General questions | |
W
wundebar author
Hi at all! |
|
C
|
cgphp 2/23/2012 |
Check this article: http://xlinesoft.com/phprunner/docs/send_an_email_with_old_data.htm |
W
|
wundebar author 2/23/2012 |
Check this article: http://xlinesoft.com/phprunner/docs/send_an_email_with_old_data.htm
|
C
|
cgphp 2/23/2012 |
foreach($values as $field=>$value) |
W
|
wundebar author 2/23/2012 |
foreach($values as $field=>$value)
$mail->Subject = $values ['field name'];
$ret=runner_mail(array('to' => $email, 'subject' => $subject, 'body' => $body, 'from'=>$from));
|
A
|
ant 2/28/2012 |
I been struggling with emails, this code works for me. Hope it helps... |