Hi,
In wordpress/wp-content/themes/annarita/ there is a file called functions.php
I’ve edited this file to customise my preferred email address & name using the following code:-
add_filter( 'wp_mail_from', 'my_mail_from' );
function my_mail_from( $email )
{
return '[email protected]';
}
add_filter( 'wp_mail_from_name', 'my_mail_from_name' );
function my_mail_from_name( $name )
{
return 'Mr Someone;
}
Therefore, I was thinking if there is a way to also customise the subject line of my outgoing emails somewhere in functions.php.
Alternatively, is there any other file in the annarita folder I could edit in order to achieve my desires?
Thanks.