[Simple feature request] SMTP & change order
-
Since you already offer change order. it would be nice if custom post types, categories and taxonomy could also be changed.
Mail Features: – I’ve tried to inc codes for you, so it can be a free option if added.
Simple SMTP
https://nanopo.st/how-to/wordpress-smtp-without-plugin/Change admin email address shared in user emails
Globally change email sender wordpress
https://theeventscalendar.com/knowledgebase/changing-sender-name-and-email-wordpress/
// Change email address
function change_default_sender_email( $original_email_address ) {
return ‘[email protected]’;
}// Change sender name
function change_default_sender_name( $original_email_from ) {
return ‘My name here’;
}// Hooking up functions to the correct WordPress filters
add_filter( ‘wp_mail_from’, ‘change_default_sender_email’ );
add_filter( ‘wp_mail_from_name’, ‘change_default_sender_name’ );
- You must be logged in to reply to this topic.