You are here

function multiple_email_default_expire_body in Multiple E-mail Addresses 2.x

Same name and namespace in other branches
  1. 5 multiple_email.module \multiple_email_default_expire_body()
  2. 6 multiple_email.module \multiple_email_default_expire_body()
  3. 7 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 747
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;
}