You are here

public function SimplenewsSourceTest::getRecipient in Simplenews 7

Same name and namespace in other branches
  1. 7.2 includes/simplenews.source.inc \SimplenewsSourceTest::getRecipient()

Returns the recipent of this newsletter mail.

Return value

The recipient mail address(es) of this newsletter as a string.

Overrides SimplenewsSourceInterface::getRecipient

File

includes/simplenews.source.inc, line 1018
Contains SimplenewsSource interface and implementations.

Class

SimplenewsSourceTest
Example source implementation used for tests.

Code

public function getRecipient() {
  return 'recipient@example.org';
}