• Resolved justcam

    (@justcam)


    Hi

    When bookings are made from the site the default email From field is picking up the site admin. Is it possible to set a do-not-reply address to this? Alternatively to set a different default email address?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support Williams – WPMU DEV Support

    (@wpmudev-support8)

    Hey @justcam,

    Hope you’re well.

    Maybe you can try these codes about that;

    add_filter( 'app_get_admin_email', function( $admin_email ){
    
        return 'your-other-email-address';
    
    }, 10 );

    You need to add these codes to your theme’s functions.php file after <?php line. Or you can create a new PHP file at wp-content/mu-plugins folder (for example change-admin-email.php file) and place codes with <?php like this;

    <?php
    add_filter( 'app_get_admin_email', function( $admin_email ){
    
        return 'your-other-email-address';
    
    }, 10 );

    This will change all admin emails for Appointments plugin, so even notification emails going to admin will affect. But please let me know if this solve your needs.

    Cheers,
    Oguz

    Thread Starter justcam

    (@justcam)

    HI Oguz

    Thanks so much for all the support. I decided to change the site email address in WordPress base settings giving the website its own email .. and that sorted out the problem without needing to add the code.

    So far I have had tremendous success and we’ve booked 700-odd appointments for the 30 teachers at the school.

    One thing I have noticed is that many bookings require a second email field (i.e. they want the confirmation to go to 2 email addresses. Is that possible to add easily or will it require serious coding?

    Cheers and again thanks

    Plugin Support Imran – WPMU DEV Support

    (@wpmudev-support9)

    Hello @justcam

    I am happy to hear that you have so many bookings ??

    Out of the box adding a second email filed is not possible. I’ve asked our developers to provide some feedback with information how it is possible to add it. Once we will have an update we will reply back to this thread.

    Have a good day and take care!

    Cheers,
    Nastia

    Plugin Contributor Amin – WPMU DEV Support

    (@wpmudev-support2)

    Hello @justcam,

    One thing I have noticed is that many bookings require a second email field (i.e. they want the confirmation to go to 2 email addresses. Is that possible to add easily or will it require serious coding?

    I spoke with developer and he reviewed code of App+ and in the current state of plugin its not possible without rewriting plugin code ??
    Sorry I’m not bringing better news.

    kind regards,
    Kasia

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Default reply to email address on emails sent to client’ is closed to new replies.