Sending triggered emails

I dont use standart WIX login/signup system, Im using my own with saving data into database. I`ve made a triggered email, which I want to send after registration. Is it possible to send triggered emails to not-loggedIn (in WIX system) users?

1 Like

You can do that onEvent

Hi,
Currently there’s no option to send triggered Emails to non-logged in users. However, it’s on our backlog. You can follow the Product Updates forum category to stay tuned.

Best,
Tal.

Hi Anton:

Yes it is and it is possible if you are managing the user information.

create contactObject with firstName, lastName, email, ...
wix-createContact(contactObject) => contactId [REMEMBER This For your Triggered email}
then
wix-crm.emailContact('triggeredEmailName", contactId [from createContact]) 

@stcroppe Is this possible to do from backend code. I’m basically doing the above, but on a backend module and it creates the new contact and I pass the id to the email contact. But I never get the email. and doesn’t say it tried to send one out either. Is there a way to debug this on the backend?
Thanks,
Tom

Actually figured it out. So not sure if this will help other people but I had similar issue and it would fail on the send Email part. It would create the contact fine, but fail on the the Send Email part. My problem was because I was doing http-request to backend code on the test/dev system and not on the published/live site. So not sure if some people might be having issue with live data vs. non-live data? Anyway hope this helps.
Tom