0

我在 Joomla JUtility::sendMail 函数中遇到了一个问题

Joomla文档中提到的函数参数是这样的

问题是我无法设置发件人电子邮件(发件人电子邮件)。当我设置发件人电子邮件并重播到电子邮件时。邮件中显示的重播电子邮件是来自 joomla 管理员配置电子邮件的邮件。当我将另一封电子邮件设置为重播或发件人电子邮件时,每次使用来自 joomla 管理配置的电子邮件时,它都没有正确发送。

我从谷歌得到了一个几乎相同的参考,但我试过这个它不起作用。

我正在使用 Joomla 1.7

我试过了

$your_email //can be array but here string one email
$your_name //name i will work fine
$user_email //admin email
$subject //subject
//last two argument is reply to and replay name Its showing inside mail but click on replay it will admin config email.
JUtility::sendMail($your_email, $your_name, $user_email, $subject, $fcontent,1,NULL,NULL,NULL,$your_email,$your_name);

任何帮助将不胜感激..

4

1 回答 1

6

像这样试试

$mailer =& JFactory::getMailer();

//添加发件人信息。

$sender = array( 
    $your_email,
    $your_name
);

$mailer->setSender($sender); 

//添加收件人。$recipient = $user_email;

$mailer->addRecipient($recipient);

//添加主题

$mailer->setSubject('Your subject string');

//添加正文

$mailer->setBody($fcontent);

$send =& $mailer->Send();

if ( $send !== true ) {
    echo 'Error sending email: ' . $send->message;
} else {
    echo 'Mail sent';
}

完成。有关更多信息,请参阅此链接从扩展发送电子邮件

我认为它可以帮助你。

于 2013-03-06T14:17:15.357 回答