function multiple_email_default_confirmation_body in Multiple E-mail Addresses 2.x
Same name and namespace in other branches
- 5 multiple_email.module \multiple_email_default_confirmation_body()
- 6 multiple_email.module \multiple_email_default_confirmation_body()
- 7 multiple_email.module \multiple_email_default_confirmation_body()
Returns the default confirmation message for use upon installation or if for some reason the variable doesn't exist.
Return value
string
File
- ./
multiple_email.module, line 725 - multiple_email module file
Code
function multiple_email_default_confirmation_body() {
$message = <<<END_MESSAGE
!username,
You have added the e-mail address '!email' to your account at !site. In order to complete the registration of this email, you must confirm it by clicking the link below and entering this confirmation code: !confirm_code
!confirm_url
If the web address does not appear as a link, you must copy the address out of this email, and paste it into the address bar of your web browser.
If you do not confirm this e-mail in !confirm_deadline, it will be unregistered from your account.
END_MESSAGE;
return $message;
}