• Resolved IlonaH

    (@ilonah)


    Hi!
    I really like how the Appointments plugin works! I am currently working on a appointment calendar for a clients website. And everything works fine, except for the fact that the notification email that was send after someone makes an appointment has my (I am the admin) email-address (as a sender).

    I tried to solve this by making another admin user, change my email-address to that of my clients and reinstalling the plugin, but that all didn’t work.

    So my question: Is it possible to change the notifications sender/from email-address to the person who is the service provider (or change it to another wp admin).

    Thanks so much!

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Predrag – WPMU DEV Support

    (@wpmudev-support1)

    Hi @ilonah,

    Hope you’re doing well 🙂

    Appointments emails use the email address that you have set under Settings > General in your WP admin.
    So you can either change the address there or use the below code snippet in your child theme functions.php or as mu-plugin:

    function override_admin_email($admin_email){
        return = 'myemail@mail.com';
    }
    add_filter( 'app_get_admin_email', 'override_admin_email', 999);

    Of course, use your desired email address there and let us know if that does the trick for you 🙂

    Cheers,
    Predrag

    Thread Starter IlonaH

    (@ilonah)

    Yes! That worked! Thanks so much for the support 🙂

    Ilona

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Change emailaddress for notification appointment’ is closed to new replies.