How to let users resend their own activation mail?

veenuisthebest

New Member
Hello,

I would like to know how I can enable users (only in the Awaiting Activation Email group) to see a link that they haven't activated their a/c yet and can resend the activation mail themselves.


Thank You
 
you could do it with selective user code etc but the simplest way is to set up a forum section that only the unactivated have access then in the forum link section add

Code:
http://www.yoursite.net/forums/register.php?do=requestemail

save then they will see the link nice & easy & it does all the skins in one go
 
Added this in header template:-

Code:
<center>
<a href="http://www.mysite.com/forums/register.php?do=requestemail" target="_top"><font size="4" color="red" style="bold">
<if condition="is_member_of($vbulletin->userinfo, 3)">You haven't activated your a/c yet, click here to resend activation mail.</if></font></a>
</center>

working like a charm !!
 
Back
Top