Using SelfRef and FEU
I set up a Test Member. The Test Member receives the email asking him to follow the link to verify their registration and when this is done, they get an email:
You will be notified as soon as your registration is verified.
Meanwhile as Admin I get the email telling me to verify the registrant.
In FEU I transfer Test Member from the group Pending to the group Members.
In practice I can now login as the Test Member and view restricted content pages.
However, the Test Member never receives the email telling him that their registration was successful. I cannot find a template.
Have I missed some setting for this or do I just send them an email manually?
I have tried checking both boxes in the image and it does not result in an email being sent to the registrant.
Thanks
----------------------------------------------
Cms Version: 1.11.10
Installed Modules:
CMSMailer: 5.2.2
FileManager: 1.4.4
MenuManager: 1.8.6
ModuleManager: 1.5.5
News: 2.14.2
Printing: 1.1.2
Search: 1.7.11
ThemeManager: 1.1.8
TinyMCE: 2.9.12
FormBuilder: 0.7.4
Captcha: 0.4.6
CMSPrinting: 1.0.5
MicroTiny: 1.2.6
CGExtensions: 1.38.1
FrontEndUsers: 1.22.3
CustomContent: 1.9
Statistics: 1.1.3
SelfRegistration: 1.8.2
Archiver: 0.2.6
Album: 1.10.3
Config Information:
php_memory_limit:
process_whole_template:
max_upload_size: 1024000000
url_rewriting: mod_rewrite
page_extension:
query_var: page
image_manipulation_prog: GD
auto_alias_content: true
locale:
default_encoding: utf-8
admin_encoding: utf-8
set_names: true
Php Information:
phpversion: 5.3.28
md5_function: On (True)
gd_version: 2
tempnam_function: On (True)
magic_quotes_runtime: Off (False)
E_STRICT: 0
E_DEPRECATED: 8192
memory_limit: 900M
max_execution_time: 900
output_buffering: On
safe_mode: Off (False)
file_uploads: On (True)
post_max_size: 1024M
upload_max_filesize: 1024M
session_save_path: /tmp (1777)
session_use_cookies: On (True)
xml_function: On (True)
xmlreader_class: On (True)
Server Information:
Server Api: cgi-fcgi
Server Db Type: MySQL (mysql)
Server Db Version: 5.5.30
Server Db Grants: Found a "GRANT ALL" statement that appears to be suitable
Server Time Diff: No filesystem time difference found
[Solved]FEU/Self Reg missing confirmation of verification...
[Solved]FEU/Self Reg missing confirmation of verification...
Last edited by jasnick on Mon Mar 03, 2014 11:23 pm, edited 1 time in total.
Re: FEU/Self Reg missing confirmation of verification email
I don't it does send an email when the Admin changes their group. Although, a UDT can be used to send an email based on the FEU Event that is sent when a FEU group is changed (OnUpdateGroup)
"The art of life lies in a constant readjustment to our surroundings." -Okakura Kakuzo
--
LinkedIn profile
--
I only speak/write in English so I may not translate well on International posts.
--
--
LinkedIn profile
--
I only speak/write in English so I may not translate well on International posts.
--
Re: FEU/Self Reg missing confirmation of verification email
OK - thanks JohnnyB - its just that the email they get after registering says You will be notified as soon as your registration is verified so I thought that it would be automatic.
Re: [Solved]FEU/Self Reg missing confirmation of verificatio
We used to have a place in the wiki to share tags.. I don't think it exists now. But, I have this bookmarked (dead page now) if you want to try to search or see if there is a cached version out there. It isn't exactly what you want to do but might be a starting point:
http://wiki.cmsmadesimple.org/index.php ... tion_Email
But, it might just be as easy as executing the CMSMailer module from an UDT.
Using CMS Mailer in a UDT:
This is untested but maybe something like this:
And then add the UDT to the group change event.
http://wiki.cmsmadesimple.org/index.php ... tion_Email
But, it might just be as easy as executing the CMSMailer module from an UDT.
Using CMS Mailer in a UDT:
Code: Select all
$email = 'your-email@your-address.com';
if ($something_happened) {
$body = 'Your account has been activated...';
$subject = 'Information regarding your account';
$mail =& cms_utils::get_module('CMSMailer');
$mail->AddAddress( $email );
$mail->SetBody( $body );
$mail->SetSubject( $subject );
$mail->Send();
}Code: Select all
$feu = cms_utils::get_module('FrontEndUsers');
$uid = $params['id'];
$properties = $feu->GetUserProperties($uid);
foreach($properties as $key=>$value) {
// assuming you have a FEU field called 'last', 'first', 'email' ||| Add others you want to access here
if ($value["title"] == 'last') { $lastname = $value["data"]; }
if ($value["title"] == 'first') { $firstname = $value["data"]; }
if ($value["title"] == 'email') { $feuemail = $value["data"]; }
// if username is email, use $params['username'] (I think)
if ($value["title"] == 'pet rock') { $petrock = $value["data"]; }
}
$name = $firstname . ' ' .$lastname;
if ($name != '') {
$email = $feuemail;
$body = 'Dear $name,<br>Your account has been activated...';
$subject = 'Information regarding your account';
$mail =& cms_utils::get_module('CMSMailer');
$mail->AddAddress( $email );
$mail->SetBody( $body );
$mail->SetSubject( $subject );
$mail->Send();
}
"The art of life lies in a constant readjustment to our surroundings." -Okakura Kakuzo
--
LinkedIn profile
--
I only speak/write in English so I may not translate well on International posts.
--
--
LinkedIn profile
--
I only speak/write in English so I may not translate well on International posts.
--
Re: [Solved]FEU/Self Reg missing confirmation of verificatio
Thanks JohnnyB - that is very helpful! I do appreciate it and will experiment.
Re: [Solved]FEU/Self Reg missing confirmation of verificatio
I made a copy of the old wiki before it went down. This afternoon I will take a look to find that article.
Related: https://www.cmscanbesimple.org/blog/adm ... nfo-mailer
Related: https://www.cmscanbesimple.org/blog/adm ... nfo-mailer
- + - + - + - + - + - + -
LATEST TUTORIAL AT CMS CAN BE SIMPLE:
Migrating Company Directory module to LISE
Migrating Company Directory module to LISE
- + - + - + - + - + - + -
Re: [Solved]FEU/Self Reg missing confirmation of verificatio
I pm-ed you two the article from the wiki.
It is very outdated (2010) therefor I won't post it here at the forum...
I could test and update it when I have a moment and post it at my blog.
It is very outdated (2010) therefor I won't post it here at the forum...
I could test and update it when I have a moment and post it at my blog.
- + - + - + - + - + - + -
LATEST TUTORIAL AT CMS CAN BE SIMPLE:
Migrating Company Directory module to LISE
Migrating Company Directory module to LISE
- + - + - + - + - + - + -
Re: [Solved]FEU/Self Reg missing confirmation of verificatio
Thanks Rolf! I miss the old wiki to share tags!Rolf wrote: I made a copy of the old wiki before it went down. This afternoon I will take a look to find that article.
I pm-ed you two the article from the wiki.
It is very outdated (2010) therefor I won't post it here at the forum...
"The art of life lies in a constant readjustment to our surroundings." -Okakura Kakuzo
--
LinkedIn profile
--
I only speak/write in English so I may not translate well on International posts.
--
--
LinkedIn profile
--
I only speak/write in English so I may not translate well on International posts.
--
Re: [Solved]FEU/Self Reg missing confirmation of verificatio
Very much appreciated, Rolf - Thank you!



