add_filter( 'shopp_reset_password_subject', [callback] ) @param string $subject the subject line of the email sent to your user after the password has been successfully reset.
Description
filters the subject line of the email sent to your user after the password has been successfully reset.
This typically defaults to <Blogname> New Password.
Example
// register filter callback add_filter('shopp_reset_password_subject', 'shopp_reset_password_subject_filter'); // create filter function function shopp_reset_password_subject_filter( $subject ) { $subject = sprintf('Your new password for %s:', get_option('siteurl')); return $subject; }
You must be logged in to post a comment.