Function TicketsEmailIntegration->send_bounce_email__error
Definitions
sources/tickets_email_integration.php
- Send out an e-mail about an error occurring.
- 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 |
| $error | string | No | No | required parameter | N/A | N/A | The error message to send to the member |
| $_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) |
| No | No | required parameter | N/A | N/A | E-mail address we tried to bind to | ||
| $email_bounce_to | 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 an error occurring.
*
* @param string $subject Subject line of original message
* @param string $error The error message to send to the member
* @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)
*/
protected function send_bounce_email__error(string $subject, string $error, ?string $_body_text, ?string $_body_html, string $email, string $email_bounce_to)
* Send out an e-mail about an error occurring.
*
* @param string $subject Subject line of original message
* @param string $error The error message to send to the member
* @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)
*/
protected function send_bounce_email__error(string $subject, string $error, ?string $_body_text, ?string $_body_html, string $email, string $email_bounce_to)

