modificar el correo de registro / How can I modify registry email?

Started by cesarjive, February 18, 2012, 11:48:24 PM

Previous topic - Next topic

cesarjive

Cuando se registra un nuevo usuario, me llega un correo de que hay un nuevo registro, pero solo viene el registro del usuario, y quiero que en el correo que me llega, aparezca también el email del nuevo registrante, ¿Cómo hago esto?

__________________________________________________________________________
When we have a new user, smf email me, but I need the email of the new user int that registry email advise, how can I do that?

Sir Osis of Liver

This will work if registration is set for Admin Approval -

In /Sources/Subs-Post.php find this:



// If they need to be approved add more info...
if ($type == 'approval')
{
$replacements['APPROVALLINK'] = $scripturl . '?action=admin;area=viewmembers;sa=browse;type=approve';
$emailtype .= '_approval';
}



Change to this:



// If they need to be approved add more info...
if ($type == 'approval')
{
$replacements['APPROVALLINK'] = $scripturl . '?action=admin;area=viewmembers;sa=browse;type=approve';
$emailtype .= '_approval';
$replacements['EMAILADDRESS'] = $_POST['email'];
}




In EmailTemplates.english.php find this:



'admin_notify_approval' => array(
/*
@additional_params: admin_notify_approval
USERNAME:
PROFILELINK:
APPROVALLINK:
@description:
*/
'subject' => 'A new member has joined',
'body' => '{USERNAME} has just signed up as a new member of your forum. Click the link below to view their profile.
{PROFILELINK}

Before this member can begin posting they must first have their account approved. Click the link below to go to the approval screen.
{APPROVALLINK}

{REGARDS}',



Change to this:



'admin_notify_approval' => array(
/*
@additional_params: admin_notify_approval
USERNAME:
PROFILELINK:
APPROVALLINK:
@description:
*/
'subject' => 'A new member has joined',
'body' => '{USERNAME} has just signed up as a new member of your forum. Click the link below to view their profile.
{PROFILELINK}

Email address:  {EMAILADDRESS}

Before this member can begin posting they must first have their account approved. Click the link below to go to the approval screen.
{APPROVALLINK}

{REGARDS}',



You should be able to find the code in the Spanish language file.


Es esto que quieres?

Ashes and diamonds, foe and friend,
 we were all equal in the end.

                                     - R. Waters

Advertisement: