My question is simple, is it possible to include a variable inside a LINK / URL of my triggered-email???
Including a VARIABLE inside a → TEXT works without any problems…
But trying to do the same for URL / LINK <------> there is no option given…
I see the following, when trying to put a variable to the LINK manually…
So as you can see i am trying to generate a CONFIRMATION-LINK to CONFIRM a new registrated USER on my website.
But can’t figure out how to include the TOKEN inside the LINK-URL, to make a clickable LINK out of it (including the neccessary CONFIRMATION-TOKEN) for member-confirmation.
After saving the triggered-email settings → i also can’t find the generated code for LINK-URL…
Text-Variables are beein generated automatically, but the URL/LINK is not included…
Reading old posts, it looks like there was a solution in the past for it (using wix-users) …
This is the corresponding code-part for it…
wixUsers.emailUser(‘verifyRegistration’, results.user.id, {
“variables”: {
“name”: firstName,
“verifyLink”: http://yourdomain.com/post-register?token=${results.approvalToken}
}
But this seems not to be working (at least not using the wix-members-API.
Someone any idea on this?
My GOAL ist it → to avoid to many clicks doing the confirmation-process, that means → avoiding a redirection to a pCONFIRMATION-PAGE and clicking there again a button for confirmation, after putting manually the CONFIRMATION-TOKEN.
There is a better and more direct way to do this → by directly sending the TOKEN inside the link and reading the token directly out on the confirmation page → which immediatelly would confirm the new registered user.