You are here

public function SocialEventManagersSendEmail::execute in Open Social 8.6

Same name and namespace in other branches
  1. 8.5 modules/social_features/social_event/modules/social_event_managers/src/Plugin/Action/SocialEventManagersSendEmail.php \Drupal\social_event_managers\Plugin\Action\SocialEventManagersSendEmail::execute()
  2. 8.7 modules/social_features/social_event/modules/social_event_managers/src/Plugin/Action/SocialEventManagersSendEmail.php \Drupal\social_event_managers\Plugin\Action\SocialEventManagersSendEmail::execute()

Overrides SocialSendEmail::execute

1 call to SocialEventManagersSendEmail::execute()
SocialEventAnEnrollSendEmail::execute in modules/social_features/social_event/modules/social_event_an_enroll/src/Plugin/Action/SocialEventAnEnrollSendEmail.php
1 method overrides SocialEventManagersSendEmail::execute()
SocialEventAnEnrollSendEmail::execute in modules/social_features/social_event/modules/social_event_an_enroll/src/Plugin/Action/SocialEventAnEnrollSendEmail.php

File

modules/social_features/social_event/modules/social_event_managers/src/Plugin/Action/SocialEventManagersSendEmail.php, line 62

Class

SocialEventManagersSendEmail
Send email to event enrollment users.

Namespace

Drupal\social_event_managers\Plugin\Action

Code

public function execute($entity = NULL) {
  parent::execute($entity->field_account->entity);
  return $this
    ->t('Send mail');
}