📌  相关文章
📜  在 joomla 中带有附件的电子邮件 - 任何代码示例

📅  最后修改于: 2022-03-11 14:55:13.443000             🧑  作者: Mango

代码示例1
$from = 'admin@somewhere.com';
$fromname = 'BIGSHOT Blog';
$recipient[] = 'john@somewhere.com';
$recipient[] = 'jane@somewhere.com';
$subject = 'Want to learn about BIGSHOT Blog';
$body = '

Check us out!

http://www.somewhere.com

'; $mode = 1; $cc = 'bob@somewhereelse.com'; $bcc[] = 'simon@somewhereelse.com'; $bcc[] = 'nick@somewhereelse.com'; $attachment[] = '/home/my_site/public_html/images/stories/food/coffee.jpg'; $attachment[] = '/home/my_site/public_html/images/stories/food/milk.jpg'; $replyto = 'no_reply@somewhere.com'; $replytoname = 'NO REPLY - BIGSHOT Blog'; JUtility::sendMail($from, $fromname, $recipient, $subject, $body, $mode, $cc, $bcc, $attachment, $replyto, $replytoname);