function theme_simplenews_newsletter_subject in Simplenews 6
Same name and namespace in other branches
- 6.2 simplenews.module \theme_simplenews_newsletter_subject()
Theme the newsletter email subject.
1 theme call to theme_simplenews_newsletter_subject()
- simplenews_mail in ./
simplenews.module - Implementation of hook_mail().
File
- ./
simplenews.module, line 2514 - Simplnews node handling, sent email, newsletter block and general hooks
Code
function theme_simplenews_newsletter_subject($name, $title, $language) {
return '[' . $name . '] ' . $title;
}