PDA

View Full Version : Receiver of Email Links


kathy369922
08-03-2009, 03:41 AM
I have tested the different types of emails sent from resgistration, etc and I noticed the link to verify within the email isn't a link where customer could click on to verify, they would have to copy & paste in a browser.
Is there a way I can change this so the end user can click on the link within the email to open up a browser to verify sign up? I know I don't like receiving emails where I have to copy & paste the link from other sites I sign up for, therefore, I know there are others who doesn't like it either. Please help.
Thanks!

Jason Byrnes
08-03-2009, 03:43 PM
The email sent on user registration is a text only email. we did this to minimize the chance that the registration emails would be caught in spam filters.

You could update the WA_UniversalEmail/email_templates/registration.php page, and change line 9:
<?php echo($WAGLOBAL_Root_URL); ?>users_Confirm.php?ID=<?php echo(mysql_insert_id()); ?>&code=<?php echo($_SESSION['randomConfirm']); ?>

to:
<a href="<?php echo($WAGLOBAL_Root_URL); ?>users_Confirm.php?ID=<?php echo(mysql_insert_id()); ?>&code=<?php echo($_SESSION['randomConfirm']); ?>"><?php echo($WAGLOBAL_Root_URL); ?>users_Confirm.php?ID=<?php echo(mysql_insert_id()); ?>&code=<?php echo($_SESSION['randomConfirm']); ?></a>

but this increases the likelihood of the email being flagged as spam.