• Resolved hccadre

    (@hccadre)


    Hello

    It is possible to send the Alert to the administrator message to more than one email account

    thank you very much

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

Viewing 13 replies - 1 through 13 (of 13 total)
  • CARRE

    (@vincent34)

    I have the same question
    The page I need help with: https://pastelshop.fr/

    abhirup23

    (@abhirup23)

    Hi,
    as per your requirement you need below filter to extend the email recipient

    woocommerce_email_recipient_{email_id}
    This is a dynamic filter where have to put email id.
    check the link – https://wordpress.stackexchange.com/questions/332157/send-admin-new-order-email-to-logged-in-user-as-well

    Regards,

    Thread Starter hccadre

    (@hccadre)

    This is not what i am asking for, I need when an user subscribe a new alert send and email to admin and my buyer, no to the logged user.

    abhirup23

    (@abhirup23)

    Hi,
    Can you please describe more what do you actually want with a screenshot or a video.

    Regards,

    ARCangelGIRL

    (@arcangelgirl)

    Hello,
    I’m actually looking for the same functionality.
    When user clicks to get notification when product is in stock I would like to send an email to admin too, so he knows that somebody is waiting product to be in stock.
    Is there is any kind of hook that is fired at that moment, when user inputs his emails to get notification?
    Thank you.

    Sumit Singh

    (@sumitsingh89612)

    Hi, You want to trigger an email to admin also when a product is in product ?
    In current flow we didn’t that email to admin because when an product return in stock admin will be the person who update the stock. I don’t think we nned to notify that email to admin also.

    Thankyou.

    Thread Starter hccadre

    (@hccadre)

    What I want is when an user subscribes to an a back on stock alert, send a message to the administrator (by default) and to a second email address.

    Thank you.

    Sumit Singh

    (@sumitsingh89612)

    Hi, Yes you can definitely add additional email address to admin email. You can use the following hook to add addition email addresses :
    woocommerce_email_recipient_stock_alert_admin

    Thread Starter hccadre

    (@hccadre)

    Can you send me an example of the code with 2 recipient

    Thanks

    Sumit Singh

    (@sumitsingh89612)

    Hi, Here is the code with 2 recipient :

    add_filter('woocommerce_email_recipient_stock_alert_admin', 'another_admin', 10, 2);
    function another_admin($email, $object) {
    	$email = $email. ', [email protected]';
    	return $email;
    }

    Thankyou.

    Thank you, it works! ??

    Hello there
    i needed this too – thxs
    can the author of this plugin add this feature settings in next release ?
    this will be useful
    Thxs again !

    Plugin Author MultiVendorX

    (@wcmp)

    Hello Totoro,
    Thanks for sharing your request. Will send this to our for their consideration.

Viewing 13 replies - 1 through 13 (of 13 total)
  • The topic ‘Send message Alert administrator to different email addresses’ is closed to new replies.