Custom automatic emails

Home Forums Legacy Support Support queries How-to & Troubleshooting Custom automatic emails

Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #269848
    Hello, Actually, when people receive email from my website for the course, they receive it from : Root User <[email protected]> Moreover, the profile picture is the logo of my host. How can I change that and the content of the emails? Thanks, Jules
    #269972
    Diana
    Participant
    @pertinentstrategy2018 Please try adding the given code in your wp-admin > plugins > editor > wplms-customizer.php file at the end before "?>" in wplms customizer plugin : add_filter('wp_mail_from', 'new_mail_fromqw'); add_filter('wp_mail_from_name', 'new_mail_from_nameqw'); function new_mail_fromqw($old) { return '[email protected]'; } function new_mail_from_nameqw($old) { return 'site name'; } instead of [email protected] -----> use your email id And instead of "Site Name" ------> use site name Then test again
Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Custom automatic emails’ is closed to new replies.