Re: Email notification is emty Re: Email notification is emty
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

Re: Email notification is emty

Started by ralfs, February 08, 2006, 01:35:52 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

ralfs

Nearly the same with me: The admin gets the mail including the link for approval
Subject: [Database name] - Registration request

A new user with the username ... has registered in your gallery.
In order to activate the account, you need to click on the link below or copy and paste it in your web browser.

http://....... [Link]


In my case the mail to the new user is empty
Subject: [Database name] - Activation notification

[nothing]


I use English_GB

Ralf

Nibbler

Edit include/langfallback.inc.php, find


$lang_register_confirm_email = cpg_lang_var("lang_register_confirm_email");


and add the missing email vars in


$lang_register_confirm_email = cpg_lang_var("lang_register_confirm_email");
$lang_register_approve_email = cpg_lang_var("lang_register_approve_email");
$lang_register_activated_email = cpg_lang_var("lang_register_activated_email");

Tranz

OMG, this answered an issue I had because I didn't know how to make language fallback work with my custom strings. Thanks, Nibbler!

Nibbler