• Going through the issues involving Mail Press and their new 5.0.1 upgrade I found that when using mailpresses wp_mail function for all email through WordPress that there is a problem.
    I have mailpress configured via SMTP and what happens is when something like Contact Form 7 or WP MAIL SMTP tries to send something it receives a Null error from Mail Press. The interesting part is Mail Press actually delivers the mail as it was sent, but since the user is alerted that the mail failed (even though it doesn’t) MP is not of any use to me.
    This only occurred with the new update and via debug mode of WP MAIL SMTP we see this
    [“smtp”]=>
    NULL
    That is MP 5.0.1 returning a null message.

Viewing 4 replies - 1 through 4 (of 4 total)
  • I see also that there are problems with my mailpress 5.0.1 installation after the update to 3.0.2

    My sendpage turns white and there are no mails leaving is it sounding familiar

    Plugin Author arena

    (@arena)

    @bigdealben

    as far as phpmailer is documented (http://phpmailer.worxware.com/index.php?pg=methods)
    last instructions of wp_mail() are :

    $result = @$phpmailer->Send();

    return $result;

    phpmailer doc says :

    Send() Creates message and assigns Mailer. If the message is not sent successfully then it returns false. Use the ErrorInfo variable to view description of the error. Returns true on success, false on failure.

    MailPress wp_mail returns false on failure, the amount of mails sent on success.

    Thread Starter bigdealben

    (@bigdealben)

    I use SMTP and the mail actually does get sent, it only reports an error

    Anonymous User

    (@anonymized-7333845)

    Hi bigdealben I got the same problem as yours, after somme wpforum/google searchs I was finaly able to solved it. It posted what worked for me here, hope it will help.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘[Plugin: MailPress] Mailpress 5.0.1 Returning Null Error to WordPress 3.0.2’ is closed to new replies.