LINUX.ORG.RU

Настройки Mail Settings в Joomla


0

0

Имеется Googlemail Account.

Его нужно настроить для отправки почты из Joomla

Mailer: SMTP-Server
Mail from: account_name@googlemail.com
From Name: My name
Sendmail Path: пусто?
SMTP Authentication: Yes
SMTP Username: account_name@googlemail.com
SMTP Password: <пароль Googlemail Account>
SMTP Host: smtp.googlemail.com

При отправке почты (формуляр Контакты) - ошибка
PHPMAILER_FROM_FAILEDaccount_name@googlemail.com

http://forum.joomla.org/viewtopic.php?f=431&t=303280


The error PHPMAILER_FROM_FAILED most probably occurs when you have set the mail sending method as SMTP, but your SMTP settings are incorrect. If you are trying to send using the Gmail SMTP, then there's no surefire way to do that yet without hacking some files.

Так какие правильные настройки для Googlemail Account должны быть?

Ответ на: комментарий от Chumka

Проблема именно с DFContact:

сейчас там так:

$mail = new JMail();
switch ( $mainframe->getCfg('mailer') ) {
case 'smtp':
$mail->useSMTP( $mainframe->getCfg('smtpauth'), $mainframe->getCfg('smtphost'), $mainframe->getCfg('smtpuser'), $mainframe->getCfg('smtppass') );
break;
case 'sendmail':
$mail->useSendmail( $mainframe->getCfg('sendmail') );
break;
default:
break;
}

# Fill mail object with data
$destinationEmails = split("[ ,;]", $dfcontact['destinationMail']);
foreach ( $destinationEmails as $email ) {
if ( $email != '' ) {
$mail->addRecipient( $email );
}
}
$mail->setSender( array( $mainframe->getCfg('mailfrom'), $mainframe->getCfg('fromname') ) );
#$mail->setSender( array( $mainframe->getCfg('mailfrom'), $name ) );
$mail->addReplyTo( array( $email, $name ) );
$mail->setSubject( $subject );

# Set mail body
if ( !empty( $dfcontact['htmlMails'] ) ) {
$mail->isHTML( true );
$mail->Body = $html;
$mail->AltBody = $text;
} else {
$mail->Body = $text;
}

# Try to send email and display result
$sendResult = $mail->Send(); - Здесь лажается!

if ( is_bool($sendResult) && $sendResult == true ) {

lorhellboy
() автор топика

у низ порты не стандартные на SMTP имхо

phasma ★☆
()
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.