public function User::applyIdentity in Courier 2.x
Same name in this branch
- 2.x src/Plugin/IdentityChannel/CourierEmail/User.php \Drupal\courier\Plugin\IdentityChannel\CourierEmail\User::applyIdentity()
- 2.x tests/modules/courier_test_message/src/Plugin/IdentityChannel/TestMessage/User.php \Drupal\courier_test_message\Plugin\IdentityChannel\TestMessage\User::applyIdentity()
Same name and namespace in other branches
- 8 src/Plugin/IdentityChannel/CourierEmail/User.php \Drupal\courier\Plugin\IdentityChannel\CourierEmail\User::applyIdentity()
Inserts the identity into the message.
Parameters
\Drupal\courier\ChannelInterface $message: The message. Passed by reference.
\Drupal\Core\Entity\EntityInterface $identity: The identity.
Throws
\Drupal\courier\Exception\IdentityException Thrown when an identity cannot be applied. Message is discarded, it does not stop creation of remaining messages in collection.
Overrides IdentityChannelPluginInterface::applyIdentity
File
- src/
Plugin/ IdentityChannel/ CourierEmail/ User.php, line 25
Class
- User
- Supports core user entities.
Namespace
Drupal\courier\Plugin\IdentityChannel\CourierEmailCode
public function applyIdentity(ChannelInterface &$message, EntityInterface $identity) {
/** @var \Drupal\user\UserInterface $identity */
/** @var \Drupal\courier\EmailInterface $message */
$message
->setRecipientName($identity
->label());
$message
->setEmailAddress($identity
->getEmail());
}