Function EmailIntegration->send_bounce_email__attachment_errors
Definitions
sources/mail_integration.php
- Send out an e-mail about us having some problem(s) with attachments.
- 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 | string | No | No | required parameter | N/A | N/A | Body of original message |
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) | |
$errors | array | No | No | required parameter | N/A | N/A | Attachment errors |
$url | string | No | No | required parameter | N/A | N/A | URL to content |
Preview
Code (PHP)
/**
* Send out an e-mail about us having some problem(s) with attachments.
*
* @param string $subject Subject line of original message
* @param string $body Body of original message
* @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 array $errors Attachment errors
* @param string $url URL to content
*/
protected function send_bounce_email__attachment_errors(string $subject, string $body, string $email, string $email_bounce_to, array $errors, string $url)
* Send out an e-mail about us having some problem(s) with attachments.
*
* @param string $subject Subject line of original message
* @param string $body Body of original message
* @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 array $errors Attachment errors
* @param string $url URL to content
*/
protected function send_bounce_email__attachment_errors(string $subject, string $body, string $email, string $email_bounce_to, array $errors, string $url)