Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Farhan Noor

    (@farhannoor)

    I will fix sender name to some meaningful name in next plugin update. Meanwhile you can add this piece of code into your theme’s functions.php to fix sender information in email alert.

    add_filter("aol_email", "aol_from_fix");
    
    function aol_from_fix($aol_email){
           $aol_email['headers'][] = 'FROM: Jon Doe <[email protected]>';
           return $aol_email;
    }

    Regards
    Farhan.

    Plugin Author Farhan Noor

    (@farhannoor)

    The email used in above code [email protected] should belong to your own website domain. Some web servers don’t send emails if FROM eMail address does not belong to the hosted website address.

    Farhan.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Admin email’ is closed to new replies.