Noptin_Mailer::default_permission_text()
Returns the default permission text.
Source Source
File: includes/class-noptin-mailer.php
public function default_permission_text() { $permission_text = __( 'You received this email because you are subscribed to our email newsletter.', 'newsletter-optin-box' ); $permission_text2 = sprintf( /* Translators: %1$s Opening link tag, %2$s Closing link tag. */ __( 'To stop receiving these emails, you can %1$sunsubscribe%2$s at any time.', 'newsletter-optin-box' ), '<a href="[[unsubscribe_url]]" rel="nofollow" target="_blank">', '</a>' ); return $permission_text . ' ' . $permission_text2; }
Expand full source code Collapse full source code View on GitHub