Emails from "Word Press" after registering

Discussion in 'Subscribely v2 WordPress Theme' started by speedsurfer, Nov 3, 2014.

  1. speedsurfer

    speedsurfer New Member

    Joined:
    Nov 2, 2014
    Messages:
    8
    Likes Received:
    0
    I just set up my initial site with Subscribely and so far so good. I just have 2 questions, users that register are getting a confirmation email from "wordpress" instead of my domain name. Can this be changed to look more professional? Also, how do I change the very bottom where is says inkthemes 2014 to my domain name? Thanks for the help
     
  2. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello,
    We are using here for registration,forget password or we can say for all mail process WordPress function. Which result it use bydeafault WP or wordpress in mail.
    We will work to improve this.
    For your second issue please follow below image.
    subscribelyV2-footer-text.png
    Thanks & Regards
    Pramod
     
  3. kenty13

    kenty13 Member

    Joined:
    Jun 26, 2014
    Messages:
    59
    Likes Received:
    2
    Hi Speedsurfer, to overcome this, you can place the following into your functions.php file. Just remember to change it to your email address/website name. To quote the inkthemes team... "It will resolve your issue"
    Cheers
    Kenty


    /** changing default wordpres email settings */

    add_filter('wp_mail_from', 'new_mail_from');
    add_filter('wp_mail_from_name', 'new_mail_from_name');

    function new_mail_from($old) {
    return 'your email address';
    }
    function new_mail_from_name($old) {
    return 'your name or your website';
    }
     
  4. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63

Share This Page