Put these functions in your theme/functions.php file
and adjust the return values as necessary…
function dasfx3_new_mail_from_name($old) {
return 'FilmMakers';
}
add_filter('wp_mail_from_name', 'dasfx3_new_mail_from_name');
function dasfx3_new_mail_from($old) {
return 'support@filmmakersallianceburlington.com';
}
add_filter('wp_mail_from', 'dasfx3_new_mail_from');
That worked like a charm Shane!
Very much appreciated!
BTW
I’m new to wordpress – how were you able to find my user name? Should I be concerned about this as a security risk?
>how were you able to find my user name?
Look at all your entries on this thread – below your ‘avatar’ and above Participant.
Re security – you mean using it in a function name? No.
exactly how do you change the return code? i dont understand what to change
what do i change the dasfx3 and FilmMakers to?