Function EmailIntegration->send_bounce_email__cannot_bind

Definitions

sources/mail_integration.php

  • Send out an e-mail about us not recognising an e-mail address for an incoming e-mail.
  • Visibility: protected
  • Is abstract?: Yes
  • 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)

Preview

Code (PHP)

/**
 * Send out an e-mail about us not recognising an e-mail address for an incoming e-mail.
 *
 * @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)
 */

abstract protected function send_bounce_email__cannot_bind(string $subject, ?string $_body_text, ?string $_body_html, string $email, string $email_bounce_to)