Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Nicolas Lemoine

    (@nlemoine)

    Hi Altair CI,

    It perfectly works for me and I never had any feedback about this kind of issue.

    Are you sure this is not a provider issue ?

    I am having the same problem where all of the emails that are generated are being sent from myusername@host.hostname.com

    happens to me as well. is there a fix? instead of using the name and email defined in the top section of the plugin… the test emails, and any subsequent emails, are sent with the default WP values.

    Plugin Author Nicolas Lemoine

    (@nlemoine)

    Just tested again and had no problems with that feature.
    Could you give some more information ? WP version ? Have you try to delete and reinstall the plugin ?

    Try to run a single PHP file with the code below, you’ll see if the limitations comes from your hosting provider :

    <?php
         $to      = 'person@example.com';
         $subject = 'subject';
         $message = 'Hey !';
         $headers = 'From: Sender Name <webmaster@example.com>' . "\r\n" .
         'Reply-To: webmaster@example.com' . "\r\n" .
         'X-Mailer: PHP/' . phpversion();
    
         mail($to, $subject, $message, $headers);
     ?>

    thanks artyshow, follow up question: does wp better mail work for every sort of email wordpress sends? for instance, comment moderation and notifications? because mine doesn’t seen to work for those. (works for other types of emails tho)

    Plugin Author Nicolas Lemoine

    (@nlemoine)

    Hi,

    It should work for every text plain emails sent in WP.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘[Plugin: WP Better Emails] sender name & address not working’ is closed to new replies.