New user confirmed

I've received this mail after the user has joined my site:

New user **** with email *******  has been confirmed, his/her ID is **. -- ****** mail delivery system Auto-generated e-mail, please, do not reply

and this one after he (the same user) confirmed his email address:

New user ***** with email ******* has been confirmed, his/her ID is **. -- ****** mail delivery system


I would like to modify the first one like this:

New user **** with email *******  has JOINED, his/her ID is **. -- ****** mail delivery system Auto-generated e-mail, please, do not reply

but I was unable to find the right file to edit, can you help me?

Quote · 17 Feb 2010

yoursite.com/administration --> settings --> e-mail templates :)

Quote · 17 Feb 2010

I was about to tell him the same thing. But i could not find that specific email as one of the templates.

https://www.deanbassett.com
Quote · 17 Feb 2010

nope, no email template for this.

I've found profile_activate.php

line 155

I have modified like this:

if ( $newusernotify )
{
$message =
"New user {$p_arr['NickName']} with email {$p_arr['Email']} has joined,
his/her ID is {$p_arr['ID']}.
--
{$site['title']} mail delivery system
<Auto-generated e-mail, please, do not reply>
";

$subject    = "New user registered";

sendMail( $site['email_notify'], $subject, $message );
}

but doesn't work

Quote · 17 Feb 2010

well the profile_activate.php is for the second message, so I modified it:

if ( $newusernotify )
{
$message =
"New user {$p_arr['NickName']} with email {$p_arr['Email']} has been activated,
his/her ID is {$p_arr['ID']}.
--
{$site['title']} mail delivery system <Auto-generated e-mail, please, do not reply>";

$subject    = "New user activated";

And now is a step ahead. But where is the string for the first message?

Quote · 18 Feb 2010

out of curiousity is the subject on the email you receive "New User Registered" ? i think you are on the right path, and i also didnt find this particular email template in the mail templates from admin, nor was i able to located it in the database.

nope, no email template for this.

I've found profile_activate.php

line 155

I have modified like this:

if ( $newusernotify )
{
$message =
"New user {$p_arr['NickName']} with email {$p_arr['Email']} has joined,
his/her ID is {$p_arr['ID']}.
--
{$site['title']} mail delivery system
<Auto-generated e-mail, please, do not reply>
";

$subject    = "New user registered";

sendMail( $site['email_notify'], $subject, $message );
}

but doesn't work

did you clear your cache and try that, because it appears to me that you are on the correct path there.

REgards,

DosDawg

When a GIG is not enough --> Terabyte Dolphin Technical Support - Server Management and Support
Quote · 18 Feb 2010

Yes DosDawg,

after modifying the profile_activate.php when the user confirm his email address I get msg "New user activated".

As I said is a step ahead, but I would like to modify the msg when the user JOIN, cause is not correct the msg "New user confirmed".

I keep searching...

Quote · 18 Feb 2010
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.