Skip to main content

Change the From email field for emails using wp_mail()

Home Forums WordPress Emails Change the From email field for emails using wp_mail()

Viewing 0 reply threads
  • Author
    Posts
    • #2410

      Layer7web
      Keymaster
      add_filter( 'wp_mail_from', 'custom_wp_mail_from' );
      function custom_wp_mail_from( $original_email_address ) {
          //Make sure the email is from the same domain 
          //as your website to avoid being marked as spam.
          return 'contact@layer7web.com';
      }
Viewing 0 reply threads

You must be logged in to reply to this topic.