public function SubscriptionManagerInterface::isSubscribed in Simplenews 8
Same name and namespace in other branches
- 8.2 src/Subscription/SubscriptionManagerInterface.php \Drupal\simplenews\Subscription\SubscriptionManagerInterface::isSubscribed()
- 3.x src/Subscription/SubscriptionManagerInterface.php \Drupal\simplenews\Subscription\SubscriptionManagerInterface::isSubscribed()
Check if the email address is subscribed to the given mailing list.
@todo Caching should be done in simplenews_load_user_by_mail().
Parameters
string $mail: The email address to be checked.
string $newsletter_id: The mailing list id.
Return value
bool TRUE if the email address is subscribed; otherwise false.
Related topics
1 method overrides SubscriptionManagerInterface::isSubscribed()
- SubscriptionManager::isSubscribed in src/
Subscription/ SubscriptionManager.php - Check if the email address is subscribed to the given mailing list.
File
- src/
Subscription/ SubscriptionManagerInterface.php, line 84
Class
- SubscriptionManagerInterface
- Subscription management; subscribe, unsubscribe and get subscription status.
Namespace
Drupal\simplenews\SubscriptionCode
public function isSubscribed($mail, $newsletter_id);