PDA

View Full Version : Mass Activation Code or Email password reminder to Users


Lextreme
10-30-2004, 05:48 PM
Anyone can help me with this function. I am trying to send out a mass activation code or email password reminder to user waiting email confirmation. Is there a trick or mod i can do mass mailing for the above function?

bonnmac
10-31-2004, 02:23 AM
send a mass email to all in the "users awaiting email confermation" group like this:

$username You have registered on yoursite.com but have not come back and finished your registration process. In order to gain full access and complete your registration you need to click on the following link.
$activatelink

it will send them all another email with act info and link in their username

nautiqeman
04-03-2005, 08:01 PM
does this work?

Oleks
04-06-2005, 01:55 PM
does this work?
Hi,
Yes. It is works fine. I am using this on a weekly basis to remind new members to activate accounts.

I have one sub question about mass e-mailing.
Dose somebody has a hack to send some numbers of e-mails (like 100 or 200) per hour to members? My host has such regulation and I am suffering from this.

Thank you.

mamboking
05-18-2005, 01:57 PM
$username worked fine $activatelink did not show the proper link

Oleks
05-18-2005, 02:03 PM
$username worked fine $activatelink did not show the proper link

Hi,
$activatelink will show up in e-mails for users awaiting confirmation.

Registered users will not see $activatelink in e-mails.

Good luck.

mamboking
05-18-2005, 03:05 PM
You know better than me but, I tested this a half dozen times and it did not work. If I send them individually it works but not as a group.

Marco van Herwaarden
05-18-2005, 06:27 PM
You must ONLY select members from the Awaiting Mail Confirmation group.

sabret00the
05-18-2005, 06:49 PM
<a href="https://vborg.vbsupport.ru/showthread.php?s=&threadid=65845" target="_blank">https://vborg.vbsupport.ru/showt...threadid=65845</a>

Dennis Olson
05-18-2005, 06:54 PM
I also have a template conditional in the Header template that tells these users that they need to activate their accounts. It also gives the CORRECT link for them to request a new confirmation email.

mamboking
05-18-2005, 07:27 PM
do you mind sharing the code?

I also have a template conditional in the Header template that tells these users that they need to activate their accounts. It also gives the CORRECT link for them to request a new confirmation email.

Dennis Olson
05-18-2005, 07:39 PM
Immediately above this statement in your header template:

$_phpinclude_output

Add:

<if condition="$bbuserinfo[usergroupid] == 3">
<div align="left" style="color: red; background-color: white; border: 1px solid black; padding:2px">Your account is awaiting email confirmation to activate. Please click the activation link in the email you were sent, or visit <a href="register.php?$session[sessionurl]do=requestemail">this page</a> to resend the activation email. If you did not receive the email then it's possible it was blocked by your email client. In this case you can either disable your blocker software or enter a new email address in <a href="profile.php?$session[sessionurl]do=editpassword">your profile</a>.</div>
</if>


Note that you can add conditionals for ANY usergroup you like. I also have one for banned and inactivated users.

Cyricx
05-18-2005, 08:17 PM
I use sabres hack, very very effective and keeps that stuff cleaned up rather nicely :)

SpaceStar
10-20-2005, 06:36 PM
does this work?

It worked very well on my site as well :)

auz1111
10-24-2005, 01:19 PM
Immediately above this statement in your header template:

$_phpinclude_output

Add:

<if condition="$bbuserinfo[usergroupid] == 3">
<div align="left" style="color: red; background-color: white; border: 1px solid black; padding:2px">Your account is awaiting email confirmation to activate. Please click the activation link in the email you were sent, or visit <a href="register.php?$session[sessionurl]do=requestemail">this page</a> to resend the activation email. If you did not receive the email then it's possible it was blocked by your email client. In this case you can either disable your blocker software or enter a new email address in <a href="profile.php?$session[sessionurl]do=editpassword">your profile</a>.</div>
</if>


Note that you can add conditionals for ANY usergroup you like. I also have one for banned and inactivated users.


nice one! thanks :)