Quote:
Originally Posted by oldford
Yeah, I just noticed this also after upgrading to 3.6.4
It looks like VB switched variable names. In 3.5 it was $sub[title] but I haven't been able to figure out what it has been switched to in 3.6.4
I asked over at VB.com and they said $sub[title] had been changed to $subscription[title] however that still doesn't work for me. I still get a blank in the emails. 
|
Hi there
You can do this instead for the Subscription confirmation email:
Open the
XML file & find:
Code:
vbmail_start();
$useremail = "$user[email]";
$subsubject = "$sub[title] - Royal Subscription";
$adminmessage = "Dear $user[username], \n\nThank you for subscribing to: Royal Membership! You've now been automatically upgraded, and have full Access to The Royal Enclosure and Elite Zones! Let me know if you have any questions.\n\nVisit Forum CellPDA.tk now to enjoy your Royal Membership privileges.\n\nhttp://www.norfolkmanagementrentals.co.uk\n\nYour financial support is much appreciated!\n\nSincere regards\n\ndaPLAYBOY\n\nMega Admin";
vbmail($useremail, $subsubject, $adminmessage);
vbmail_end();
see where it says:
Code:
$subsubject = "$sub[title] - type in your own title here"
This will work for you with no problems!
Do the same with the 'Expired' code, too!
Br.