function multiple_email_default_expire_body in Multiple E-mail Addresses 6
Same name and namespace in other branches
- 5 multiple_email.module \multiple_email_default_expire_body()
- 7 multiple_email.module \multiple_email_default_expire_body()
- 2.x multiple_email.module \multiple_email_default_expire_body()
Returns the default message sent to a user when they have failed to confirm an e-mail address within the deadline.
Return value
string
File
- ./
multiple_email.module, line 784 - multiple_email module file
Code
function multiple_email_default_expire_body() {
$message = <<<END_MESSAGE
!username,
You have failed to confirm the the e-mail address '!email' within the confirmation period of !confirm_deadline. Therefore, the e-mail address has been removed from your account.
You may add this address again, but you must confirm the address within the specified deadline!
END_MESSAGE;
return $message;
}