Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Mohamed Endisha

    (@endisha)

    Hello Sven

    The plugin does not modify the email sender. By default, WordPress uses “wordpress@yourdomain” as the sender email for all outgoing emails. If you want to customize the sender email address, you can use the following code snippet:

    function custom_email_from( $email ) {
      return '[email protected]';
    }
    add_filter( 'wp_mail_from', 'custom_email_from' );

    However, I would recommend using SMTP for emails instead of relying on the default WordPress email function. SMTP can improve email deliverability and ensure that your emails are not marked as spam.

    Thread Starter sven86

    (@sven86)

    Thanks, will try that !

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