Hey there, am trying to email a confirmation with a line that reads like this:

"This is confirmation that the name: [signup-user-data] will be cleared for full access to this exclusive event."

Have tried all the tokens available, but the best that I get is the words: "SIGNUP INFORMATION"...
-to each event signup email name.
Can anyone help? this is really important..

Latest Dev versions of modules, anonymous checkout allowed.

Comments

theohawse’s picture

Title: No Signup Information in Confirmation Email » Non-working Signup Information Token Replacement in Confirmation Email
amysiano4x3’s picture

any word on this? also experiencing the same issue.

Nicolas Pham-Dinh’s picture

Same issue here.

aminalid’s picture

Similar issue, but with substitution strings located at admin/settings/signup - confirmation email template:

The problem is in the uc_signup_mark_paid() function. The $signup object there doesn't have needed variables to replace the substitution strings (not sure about tokens though).
I needed only the %user_name string to be replaced so i fixed my problem by adding:

$signup->name = $accounts[$signup->uid]->name;
before signup_send_confirmation_mail() is called.

Sorry ... i dont have time to submit a patch now, hope this will help.