function multiple_email_default_expire_body in Multiple E-mail Addresses 5
Same name and namespace in other branches
- 6 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 email address within the deadline.
Return value
string
File
- ./
multiple_email.module, line 634 - multiple_email module file
Code
function multiple_email_default_expire_body() {
$message = <<<END_MESSAGE
!username,
You have failed to confirm the the email address '!email' within the
confirmation period of !confirm_deadline. Therefore, the email 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;
}