Hello.
I have a customer who is using Umbraco v6.1.6 and TeaCommerce as their current web shop solution.
The Customer requests that a visitor should be able to enter another email address that also receives an order confirmation email. So that one visitor gets more than one order confirmation by email. Does anyone know how / if it can be solved?
I tried to separate multiple email addresses with colons and semicolons but it did not work.
(I got no errormessage but no order confirmations where sent.)
Not sure if there is a way to do this using the UI but you could do it using the NotificationCenter and order properties.
You could add the additional email address as an order property and then on the Order.Finalized event check if the property exists and if it does load the email template using the EmailTemplateService and send it that way.
Hope that helps a little, fairly new to Tea Commerc myself.
Multiple recipients of order confirmations
Hello. I have a customer who is using Umbraco v6.1.6 and TeaCommerce as their current web shop solution.
The Customer requests that a visitor should be able to enter another email address that also receives an order confirmation email. So that one visitor gets more than one order confirmation by email. Does anyone know how / if it can be solved?
I tried to separate multiple email addresses with colons and semicolons but it did not work. (I got no errormessage but no order confirmations where sent.)
Thank you!
Hi Dennis,
Not sure if there is a way to do this using the UI but you could do it using the NotificationCenter and order properties.
You could add the additional email address as an order property and then on the Order.Finalized event check if the property exists and if it does load the email template using the EmailTemplateService and send it that way.
Hope that helps a little, fairly new to Tea Commerc myself.
Many Thanks,
Tom
Thank you Tom, that was perfect!
No problem Dennis, glad I could help.
is working on a reply...