Function Module_join->dispatch_declarations_mail

Definitions

pages/modules/join.php

  • Send a mail confirmation of declarations made to the member.
  • Visibility: protected
  • Is abstract?: No
  • Is static?: No
  • Is final?: No

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$declarations_made LONG_TEXT No No required parameter N/A N/A This must be the declarations which the member made, taken from the form input values and not the database, one per line
$email_address SHORT_TEXT No No required parameter N/A N/A The e-mail address of the member

Preview

Code (PHP)

/**
 * Send a mail confirmation of declarations made to the member.
 *
 * @param  LONG_TEXT $declarations_made This must be the declarations which the member made, taken from the form input values and not the database, one per line
 * @param  SHORT_TEXT $email_address The e-mail address of the member
 */

protected function dispatch_declarations_mail(string $declarations_made, string $email_address)