Function ForumEmailIntegration->send_bounce_email__access_denied

Definitions

sources/cns_forum_email_integration.php

  • Send out an e-mail about us not having access to the forum.
  • Visibility: protected
  • Is abstract?: No
  • Is static?: No
  • Is final?: No

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$subject string No No required parameter N/A N/A Subject line of original message
$_body_text ?string No No required parameter N/A N/A E-mail body in text format (null: not present)
$_body_html ?string No No required parameter N/A N/A E-mail body in HTML format (null: not present)
$email EMAIL No No required parameter N/A N/A E-mail address we tried to bind to
$email_bounce_to EMAIL No No required parameter N/A N/A E-mail address of sender (usually the same as $email, but not if it was a forwarded e-mail)
$forum_name string No No required parameter N/A N/A Forum name
$username string No No required parameter N/A N/A Bound username
$member_id MEMBER No No required parameter N/A N/A Member ID

Preview

Code (PHP)

/**
 * Send out an e-mail about us not having access to the forum.
 *
 * @param  string $subject Subject line of original message
 * @param  ?string $_body_text E-mail body in text format (null: not present)
 * @param  ?string $_body_html E-mail body in HTML format (null: not present)
 * @param  EMAIL $email E-mail address we tried to bind to
 * @param  EMAIL $email_bounce_to E-mail address of sender (usually the same as $email, but not if it was a forwarded e-mail)
 * @param  string $forum_name Forum name
 * @param  string $username Bound username
 * @param  MEMBER $member_id Member ID
 */

protected function send_bounce_email__access_denied(string $subject, ?string $_body_text, ?string $_body_html, string $email, string $email_bounce_to, string $forum_name, string $username, int $member_id)