Function EmailIntegration->send_system_email

Definitions

sources/mail_integration.php

  • Send out a system (advisory) e-mail.
  • 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
$email EMAIL No No required parameter N/A N/A E-mail address we were to bind to; not actually used
$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); not always for bounces, sometimes just for informational responses

Preview

Code (PHP)

/**
 * Send out a system (advisory) e-mail.
 *
 * @param  string $subject Subject line of original message
 * @param  string $body Body of original message
 * @param  EMAIL $email E-mail address we were to bind to; not actually used
 * @param  EMAIL $email_bounce_to E-mail address of sender (usually the same as $email, but not if it was a forwarded e-mail); not always for bounces, sometimes just for informational responses
 */

protected function send_system_email(string $subject, string $body, string $email, string $email_bounce_to)