phpMailer error

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Leszek

    phpMailer error

    Hi.
    I have problem with phpMailer 1.73 (windows version) After copying both
    class.phpmailer and class.smtp and also language file phpmailer.lang-pl to
    my php include directory im getting this error when I'm trying to use
    phpMailer:

    Mailer Error: Language string failed to load: recipients_fail ed


    Does anyone konw the reason for this error?
    Could you give a solution?

    Thanks
    Leszek


  • Juliette

    #2
    Re: phpMailer error

    Leszek wrote:
    Hi.
    I have problem with phpMailer 1.73 (windows version) After copying both
    class.phpmailer and class.smtp and also language file phpmailer.lang-pl to
    my php include directory im getting this error when I'm trying to use
    phpMailer:
    >
    Mailer Error: Language string failed to load: recipients_fail ed
    >
    >
    Does anyone konw the reason for this error?
    Could you give a solution?
    >
    Thanks
    Leszek
    >
    >
    Leszek,

    First problem is that the error message is not loading:

    Make sure you have the language file in an underlying directory called
    'language'.

    Second: to use the lang-pl file, you need to change the language setting
    of phpmailer

    $mail = new PHPMailer();
    $mail->SetLanguage( 'pl', 'pathtophpmaile r/phpmailer/language/' );

    As a side-note, it is always a good idea to also upload the lang-en file
    so that the application has access to the default language variables.


    Once you've set the language up, then you will see the proper error
    message for debugging.
    That will be your next problem to work on.

    Good luck,
    Jrf

    Comment

    Working...