Sending a triggered email to a user

I am trying to generate an email to the admin of a site I’m developing.

Shouldn’t this line do the trick?

      wixCRM.emailContact('XxxXxXx', 'e1d1r4yt-r4af-42a2-851a-b3420e835438');

I modified the fields above, for privacy, but the triggered email ID is right and the contactid came straight from the PrivateMembersData collection.

The code appears to be executed, as the next line after it executes fine but I get no email. It’s not generating any errors. I am also importing wixUsers and wixCRM at the top of the page…so it’s not that.

Can anyone suggest what else I could try?

Simon.

Figured it out now

wixUsers.emailUser("SaxXxxx", 'e1d1r4yt-r4af-42a2-851a-b3420e835438');

Grab the ID from PrivateMembersData. Duplicate this line to send to other email addresses also.

Header must include:

import wixUsers from 'wix-users';

Hi Simon,

To avoid confusion, the code must be like this:

wixUsers.emailUser(email_id, user_id);

Where “email_id” is the ID from the Triggered emails, and “user_id” is the ID of the site member who’s intended to receive the email.

For more details please observe the emailUser( ) API.

Ahmad