Active
Project:
Signup Integration for Ubercart
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
27 Mar 2011 at 15:25 UTC
Updated:
12 Oct 2011 at 12:18 UTC
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
Comment #1
theohawse commentedComment #2
amysiano4x3 commentedany word on this? also experiencing the same issue.
Comment #3
Nicolas Pham-Dinh commentedSame issue here.
Comment #4
aminalid commentedSimilar 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.