本文整理汇总了PHP中kuserPeer::sendNewUserMail方法的典型用法代码示例。如果您正苦于以下问题:PHP kuserPeer::sendNewUserMail方法的具体用法?PHP kuserPeer::sendNewUserMail怎么用?PHP kuserPeer::sendNewUserMail使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类kuserPeer
的用法示例。
在下文中一共展示了kuserPeer::sendNewUserMail方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: enableLogin
/**
* Enable user login
* @param string $loginId
* @param string $password
* @param bool $checkPasswordStructure
* @throws kUserException::USER_LOGIN_ALREADY_ENABLED
* @throws kUserException::INVALID_EMAIL
* @throws kUserException::INVALID_PARTNER
* @throws kUserException::ADMIN_LOGIN_USERS_QUOTA_EXCEEDED
* @throws kUserException::PASSWORD_STRUCTURE_INVALID
* @throws kUserException::LOGIN_ID_ALREADY_USED
*/
public function enableLogin($loginId, $password = null, $checkPasswordStructure = true, $sendEmail = null)
{
if (!$password) {
$password = UserLoginDataPeer::generateNewPassword();
if (is_null($sendEmail)) {
$sendEmail = true;
}
}
if ($this->getLoginDataId()) {
throw new kUserException('', kUserException::USER_LOGIN_ALREADY_ENABLED);
}
$loginDataExisted = null;
$loginData = UserLoginDataPeer::addLoginData($loginId, $password, $this->getPartnerId(), $this->getFirstName(), $this->getLastName(), $this->getIsAdmin(), $checkPasswordStructure, $loginDataExisted);
if (!$loginData) {
throw new kUserException('', kUserException::LOGIN_DATA_NOT_FOUND);
}
$this->setLoginDataId($loginData->getId());
if ($sendEmail) {
if ($loginDataExisted) {
kuserPeer::sendNewUserMail($this, true);
} else {
kuserPeer::sendNewUserMail($this, false);
}
kuserPeer::sendNewUserMailToAdmins($this);
}
return $this;
}
示例2: enableLogin
/**
* Enable user login
* @param string $loginId
* @param string $password
* @param bool $checkPasswordStructure
* @throws kUserException::USER_LOGIN_ALREADY_ENABLED
* @throws kUserException::INVALID_EMAIL
* @throws kUserException::INVALID_PARTNER
* @throws kUserException::ADMIN_LOGIN_USERS_QUOTA_EXCEEDED
* @throws kUserException::PASSWORD_STRUCTURE_INVALID
* @throws kUserException::LOGIN_ID_ALREADY_USED
*/
public function enableLogin($loginId, $password = null, $checkPasswordStructure = true, $sendEmail = null)
{
if (!$password) {
$password = UserLoginDataPeer::generateNewPassword();
if (is_null($sendEmail)) {
$sendEmail = true;
}
}
if ($this->getLoginDataId()) {
throw new kUserException('', kUserException::USER_LOGIN_ALREADY_ENABLED);
}
$loginDataExisted = null;
$loginData = UserLoginDataPeer::addLoginData($loginId, $password, $this->getPartnerId(), $this->getFirstName(), $this->getLastName(), $this->getIsAdmin(), $checkPasswordStructure, $loginDataExisted);
if (!$loginData) {
throw new kUserException('', kUserException::LOGIN_DATA_NOT_FOUND);
}
$this->setLoginDataId($loginData->getId());
//Email notification on user creation is sent while using kuser email so make sure this field is set before enabling login
//if not than set the email to be the $loginId provided to this action (we now know this is a valid email since "addLoginData" verifies this)
if (!$this->getEmail()) {
$this->setEmail($loginId);
}
if ($sendEmail) {
if ($loginDataExisted) {
kuserPeer::sendNewUserMail($this, true);
} else {
kuserPeer::sendNewUserMail($this, false);
}
if (!PermissionPeer::isValidForPartner(PermissionName::FEATURE_DISABLE_NEW_USER_EMAIL, $this->getPartnerId())) {
kuserPeer::sendNewUserMailToAdmins($this);
}
}
return $this;
}