You are here

public function DevelMailLogger::mail in Devel Mail Logger 8

Sends a message composed by \Drupal\Core\Mail\MailManagerInterface->mail().

Parameters

array $message: Message array with at least the following elements:

  • id: A unique identifier of the email type. Examples: 'contact_user_copy', 'user_password_reset'.
  • to: The mail address or addresses where the message will be sent to. The formatting of this string will be validated with the PHP email validation filter. Some examples:

  • subject: Subject of the email to be sent. This must not contain any newline characters, or the mail may not be sent properly. The subject is converted to plain text by the mail plugin manager.
  • body: Message to be sent. Accepts both CRLF and LF line-endings. Email bodies must be wrapped. For smart plain text wrapping you can use \Drupal\Core\Mail\MailFormatHelper::wrapMail() .
  • headers: Associative array containing all additional mail headers not defined by one of the other parameters. PHP's mail() looks for Cc and Bcc headers and sends the mail to addresses in these headers too.

Return value

bool TRUE if the mail was successfully accepted for delivery, otherwise FALSE.

Overrides MailInterface::mail

File

src/Plugin/Mail/DevelMailLogger.php, line 72

Class

DevelMailLogger
Defines a mail backend that saves emails to DB.

Namespace

Drupal\devel_mail_logger\Plugin\Mail

Code

public function mail(array $message) {
  $query = $this->database
    ->insert('devel_mail_logger')
    ->fields([
    'timestamp' => \Drupal::time()
      ->getRequestTime(),
    'recipient' => $message['to'],
    'subject' => $message['subject'],
    'message' => json_encode($message),
  ]);
  $query
    ->execute();
  return TRUE;
}