Sender E-Mail Affiliate Pro

Hi,

we would like to change the sender e-mail in the Plugin Affiliate Pro.

At the moment, all emails to our affiliates come from a false mail adress.

Where can I change the sender email?

Best regards

Posted in

Comments

One response to “Sender E-Mail Affiliate Pro”

  1. Hi Gerome,

    Welcome to our support channel and many thanks for using our tools on your shop.

    The from email address comes directly from WordPress and can be changed either with the following snippet put in your functions.php file

    function example_change_from_email( $original ) {
    return 'foo@bar.com';
    }
    add_filter( 'wp_mail_from', 'example_change_from_email' );

    or by using a plugin that does the job for you like WP Mail SMTP or something similar, there are plenty in the plugins repository to pick from.

    Kind regards,
    George

Share