• The sender gets the e-mail, but none of the users. See the debug trace below (addresses redacted)

    = = = = = =

    PHPMailer Object
    (
    [Priority] => 3
    [CharSet] => UTF-8
    [ContentType] => text/html
    [Encoding] => 8bit
    [ErrorInfo] =>
    [From] => [email protected]
    [FromName] => admin
    [Sender] =>
    [ReturnPath] =>
    [Subject] => Anothere test
    [Body] =>
    this is some email

    [AltBody] =>
    [MIMEBody:protected] =>
    [MIMEHeader:protected] =>
    [mailHeader:protected] =>
    [WordWrap] => 0
    [Mailer] => mail
    [Sendmail] => /usr/sbin/sendmail
    [UseSendmailOptions] => 1
    [PluginDir] =>
    [ConfirmReadingTo] =>
    [Hostname] =>
    [MessageID] =>
    [MessageDate] =>
    [Host] => localhost
    [Port] => 25
    [Helo] =>
    [SMTPSecure] =>
    [SMTPAuth] =>
    [Username] =>
    [Password] =>
    [AuthType] =>
    [Realm] =>
    [Workstation] =>
    [Timeout] => 10
    [SMTPDebug] =>
    [Debugoutput] => echo
    [SMTPKeepAlive] =>
    [SingleTo] =>
    [SingleToArray] => Array
    (
    )

    [LE] =>

    [DKIM_selector] =>
    [DKIM_identity] =>
    [DKIM_passphrase] =>
    [DKIM_domain] =>
    [DKIM_private] =>
    [action_function] =>
    [Version] => 5.2.4
    [XMailer] =>
    [smtp:protected] =>
    [to:protected] => Array
    (
    [0] => Array
    (
    [0] => [email protected]
    [1] => admin
    )

    )

    [cc:protected] => Array
    (
    )

    [bcc:protected] => Array
    (
    [0] => Array
    (
    [0] => [email protected]
    [1] =>
    )

    [1] => Array
    (
    [0] => [email protected]
    [1] =>
    )

    )

    [ReplyTo:protected] => Array
    (
    )

    [all_recipients:protected] => Array
    (
    [[email protected]] => 1
    [[email protected]] => 1
    [[email protected]] => 1
    )

    [attachment:protected] => Array
    (
    )

    [CustomHeader:protected] => Array
    (
    [0] => Array
    (
    [0] => Return-Path
    [1] =>
    )

    [1] => Array
    (
    [0] => Reply-To
    [1] => “admin”
    )

    )

    [message_type:protected] =>
    [boundary:protected] => Array
    (
    )

    [language:protected] => Array
    (
    )

    [error_count:protected] => 0
    [sign_cert_file:protected] =>
    [sign_key_file:protected] =>
    [sign_key_pass:protected] =>
    [exceptions:protected] => 1
    )

    http://ww.wp.xz.cn/plugins/email-users/

Viewing 1 replies (of 1 total)
  • Plugin Author Mike Walsh

    (@mpwalsh8)

    This is the critical piece:

    [bcc:protected] => Array
    (
    [0] => Array
    (
    [0] => [email protected]
    [1] =>
    )
    
    [1] => Array
    (
    [0] => [email protected]
    [1] =>
    )
    
    )

    This means that these two email addresses will receive the email as they are the target recipients in the BCC list. When debug is enabled, they won’t ever receive the email because the “send” process is intercepted to display the debug content.

    If they don’t receive the email when debug is disabled, something is happening between the call to wp_mail(), which is passed the content you see in the debug output, and your server’s underlying email system.

    What that could be is any number of things. Some hosts limit the number of outgoing email sent per hour. Sometimes the mail is not being received because it is viewed as spam (I’ve seen this happen with Gmail and RoadRunner – Time Warner Cable).

Viewing 1 replies (of 1 total)

The topic ‘Not sending e-mails (debug trace attached)’ is closed to new replies.