forked from GNUsocial/gnu-social
optionally send welcome email in installforemail.php
This commit is contained in:
parent
914de296a1
commit
b432cc72c9
@ -22,8 +22,15 @@
|
|||||||
|
|
||||||
define('INSTALLDIR', realpath(dirname(__FILE__) . '/../../..'));
|
define('INSTALLDIR', realpath(dirname(__FILE__) . '/../../..'));
|
||||||
|
|
||||||
|
$shortoptions = 'w';
|
||||||
|
$longoptions = array('welcome');
|
||||||
|
|
||||||
$helptext = <<<END_OF_INSTALLFOREMAIL_HELP
|
$helptext = <<<END_OF_INSTALLFOREMAIL_HELP
|
||||||
|
|
||||||
installforemail.php [options] <email address>
|
installforemail.php [options] <email address>
|
||||||
|
Create a new account and, if necessary, a new network for the given email address
|
||||||
|
|
||||||
|
-w --welcome Send a welcome email
|
||||||
|
|
||||||
END_OF_INSTALLFOREMAIL_HELP;
|
END_OF_INSTALLFOREMAIL_HELP;
|
||||||
|
|
||||||
@ -54,6 +61,10 @@ StatusNet::switchSite($sn->nickname);
|
|||||||
|
|
||||||
$confirm = EmailRegistrationPlugin::registerEmail($email);
|
$confirm = EmailRegistrationPlugin::registerEmail($email);
|
||||||
|
|
||||||
|
if (have_option('w', 'welcome')) {
|
||||||
|
EmailRegistrationPlugin::sendConfirmEmail($confirm);
|
||||||
|
}
|
||||||
|
|
||||||
$confirmUrl = common_local_url('register', array('code' => $confirm->code));
|
$confirmUrl = common_local_url('register', array('code' => $confirm->code));
|
||||||
|
|
||||||
print $confirmUrl."\n";
|
print $confirmUrl."\n";
|
||||||
|
Loading…
Reference in New Issue
Block a user