public function SpoolStorageInterface::updateMails in Simplenews 8.2
Same name and namespace in other branches
- 8 src/Spool/SpoolStorageInterface.php \Drupal\simplenews\Spool\SpoolStorageInterface::updateMails()
- 3.x src/Spool/SpoolStorageInterface.php \Drupal\simplenews\Spool\SpoolStorageInterface::updateMails()
Update status of mail data in spool table.
Time stamp is set to current time.
Parameters
array $msids: Array of Mail spool ids to be updated.
int $status: One of the SpoolStorageInterface::STATUS_* constants.
1 method overrides SpoolStorageInterface::updateMails()
- SpoolStorage::updateMails in src/
Spool/ SpoolStorage.php - Update status of mail data in spool table.
File
- src/
Spool/ SpoolStorageInterface.php, line 77
Class
- SpoolStorageInterface
- The spool storage manages a queue of mails that need to be sent.
Namespace
Drupal\simplenews\SpoolCode
public function updateMails(array $msids, $status);