Stripe Options - EOT Noticifications 'from' field

Using the Stripe payment gateway, I have notifications working. I can edit these except I can’t find where to edit the “from” or “reply to” fields. It must be automatically the site admin or somewhere but I can’t figure out how to edit or change these parameters.

Any help is appreciated. I’m new to the forum.

sorry about my speeelling of “notifications”. :slight_smile:

Are you talking about notifications sent from your site or from Stripe?

From the site. I also get notices from Stripe for payments but what I’m referring to comes from the website which sends reminder messages at pre-determined times

Setting From involves just a regular WP function (or two, if you want to change the From name as well). Add this (suitably modified) as a mu-plugin:

<?php
function kts_new_mail_from( $old ) {
	return 'email@email.com';
}
add_filter( 'wp_mail_from', 'kts_new_mail_from' );

function kts_new_mail_from_name( $old ) {
	$site = get_bloginfo( 'name' );
	return $site;
}
add_filter( 'wp_mail_from_name', 'kts_new_mail_from_name' );

Setting Reply To is more complicated. See this: https://wordpress.stackexchange.com/questions/182668/reply-to-address-email

Thank you. On the “from name” portion, does ‘name’ need to read ‘Joe Blow’ ???

No. As it is, without modification, it will get you the name of your website.

Thanks for your help, Tim. I have it added to a plugin in the MU folder.