本文整理汇总了PHP中FormMail::sendPasswordReset方法的典型用法代码示例。如果您正苦于以下问题:PHP FormMail::sendPasswordReset方法的具体用法?PHP FormMail::sendPasswordReset怎么用?PHP FormMail::sendPasswordReset使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FormMail
的用法示例。
在下文中一共展示了FormMail::sendPasswordReset方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: swwat_parse_string
<?php
// $Id: WorkerLoginResetAction.php 1345 2012-08-21 15:40:38Z preston $ Copyright (c) ConSked, LLC. All Rights Reserved.
include 'util/authenticate.php';
require_once 'properties/constants.php';
require_once 'db/WorkerLogin.php';
require_once 'util/log.php';
require_once 'util/mail.php';
require_once 'util/session.php';
require_once 'swwat/gizmos/parse.php';
/**
* This Controller is used by the WorkerLoginPage's reset button (typically used by the Worker themselves)
* vs. the WorkerViewPage's reset button (typically used by an Organizer)
*/
$email = swwat_parse_string(html_entity_decode($_POST[PARAM_EMAIL]), true);
if (is_null($email)) {
throw new LoginException('username required');
}
try {
$password = WorkerLogin::password_reset($email);
FormMail::sendPasswordReset($email, $password);
$password = NULL;
} catch (Exception $ex) {
logMessage('WorkerLoginResetAction error', $ex->getMessage());
}
$password = NULL;
// in all cases; redirect back to Login page
header('Location: WorkerLoginPage.php');
include 'WorkerLoginPage.php';