Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter cshrwd

    (@cshrwd)

    Fixed the problem by installing the plugin “wp mailfrom”. Too bad I have to use yet another plugin to fix a problem, but at least it’s taken care of.

    Hi cshrwd,
    I have the same problem. “WordPress” as the sender.
    Plugin “wp mailfrom” already installed, but it’s still sending as “WordPress”.
    Can you help me, please?
    Thank you.

    // CHANGE OUR EMAIL STUFF FOR SENT EMAILS
    add_filter('wp_mail_from', 'voodoo_mail_from');
    add_filter('wp_mail_from_name', 'voodoo_mail_from_name');
    
    function voodoo_mail_from($old) {
     return 'EMAIL ADDRESS GOES HERE';
    }
    function voodoo_mail_from_name($old) {
     return 'NAME GOES HERE';
    }

    Adding this into your functions.php in your theme will allow you to modify all email coming from your WP install to have specific email and name

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: Contact Form 7] Different Fix for "WordPress" as Sender Name??’ is closed to new replies.