You are here

function multiple_email_default_confirmation_body in Multiple E-mail Addresses 5

Same name and namespace in other branches
  1. 6 multiple_email.module \multiple_email_default_confirmation_body()
  2. 7 multiple_email.module \multiple_email_default_confirmation_body()
  3. 2.x 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 608
multiple_email module file

Code

function multiple_email_default_confirmation_body() {
  $message = <<<END_MESSAGE
!username,

You have added the email 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 email in !confirm_deadline, it will be unregistered
from your account.
END_MESSAGE;
  return $message;
}