public MailHandlerInterface::sendMailMessages(MessageInterface $message, AccountInterface $sender)
Sends mail messages as appropriate for a given Message form submission.
Can potentially send up to three messages as follows:
- To the configured recipient;
- Auto-reply to the sender; and
- Carbon copy to the sender.
Parameters
\Drupal\contact\MessageInterface $message: Submitted message entity.
\Drupal\Core\Session\AccountInterface $sender: User that submitted the message entity form.
Throws
\Drupal\contact\MailHandlerException When unable to determine message recipient.
File
- core/modules/contact/src/MailHandlerInterface.php, line 28
Class
- MailHandlerInterface
- Provides an interface for assembly and dispatch of contact mail messages.
Namespace
Drupal\contact
Code
public function sendMailMessages(MessageInterface $message, AccountInterface $sender);
Please login to continue.