Home › Forums › WordPress › Emails › Change the From email field for emails using wp_mail()
Tagged: change, email, from, wordpress
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'; }
You must be logged in to reply to this topic.