Jump to content
  • 0

Класс phpmailer, ошибка Language string failed to load


strix
 Share

Question

Для отправки почты использую класс phpmailer - пример из официальной документации не работает:

<?php
require("class.phpmailer.php");
$mail = new PHPMailer();
$mail->IsSMTP(); // telling the class to use SMTP
$mail->Host = "smtp.example.com"; // SMTP server
$mail->From = "from@example.com";
$mail->AddAddress("myfriend@example.net");

$mail->Subject = "First PHPMailer Message";
$mail->Body = "Hi! nn This is my first e-mail sent through PHPMailer.";
$mail->WordWrap = 50;

if(!$mail->Send())
{
echo 'Message was not sent.';
echo 'Mailer error: ' . $mail->ErrorInfo;
}
else
{
echo 'Message has been sent.';
}
?>

Выдает ошибку - Language string failed to load: recipients_failed

пути правильные, адрес тоже. Подскажите, пожалуйста, в чем может быть проблема? Заранее спасибо.

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

2vartem, сторонние библиотеки используются для быстрой разработки. Если вас никогда не торопило начальство и ваша религия не позволяет пользоваться библиотеками и фреймворками, то не надо такое отношение к ним демонстрировать на форуме.

p.s. и если вас так устраивает mail() функция - приведите пример: как приатачить файл к письму и отослать его через стороний почтовой сервер по smtp.

Link to comment
Share on other sites

  • 0

Учебник по php-mailer - http://php.russofile.ru/ru/translate/mail/phpmailer/ - может, кому-то пригодится

Насчет необходимости использования данного класса, думаю, вопросы отпадут после изучения его возможностей :lol:

Несколько часов, потраченных на изучение класса, полностью себя оправдали!

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy