public function WebformScheduledEmailManagerInterface::load in Webform 6.x
Same name and namespace in other branches
- 8.5 modules/webform_scheduled_email/src/WebformScheduledEmailManagerInterface.php \Drupal\webform_scheduled_email\WebformScheduledEmailManagerInterface::load()
Load scheduled email for specified submission and handler.
Parameters
\Drupal\webform\WebformSubmissionInterface $webform_submission: A webform submission.
string $handler_id: The webform handler ID.
Return value
\stdClass|null The scheduled email record or NULL
1 method overrides WebformScheduledEmailManagerInterface::load()
- WebformScheduledEmailManager::load in modules/
webform_scheduled_email/ src/ WebformScheduledEmailManager.php - Load scheduled email for specified submission and handler.
File
- modules/
webform_scheduled_email/ src/ WebformScheduledEmailManagerInterface.php, line 202
Class
- WebformScheduledEmailManagerInterface
- Provides an interface for managing webform scheduled emails.
Namespace
Drupal\webform_scheduled_emailCode
public function load(WebformSubmissionInterface $webform_submission, $handler_id);