Hello,
When a new user registers, a welcome message is sent via PM using CB Auto Welcome.
I don't want to send a PM notification by email for this welcome message, so I have changed the default uddeim notification to Never.
When the user first logs in, I want to set their notification to When Offline and I am trying to do this with CB Auto Actions.
I have an action with trigger After First Login, the type is Query and the query is:
Code:
update #__uddeim_emn set status = 2
where userid = [user_id];
I have tested by changing [user_id] to an existing ID and that works, so I assume (cant find this trigger in the documentation) [user_id] is not available with this trigger?
Is their an alternative trigger/method I can use to achieve the same thing?
Thanks
David