function theme_print_mail_sendlink_plain in Printer, email and PDF versions 7.2
Theme function for the email sending just the link.
Allows themes and modules to override the default sendlink plain text format.
Parameters
array $params: Value of $params as passed to print_mail_mail().
Return value
string Plain text containing the message and a simple link to the content.
Related topics
1 theme call to theme_print_mail_sendlink_plain()
- print_mail_mail in print_mail/
print_mail.module - Implements hook_mail().
File
- print_mail/
print_mail.inc, line 287 - Displays and processes the mail send form.
Code
function theme_print_mail_sendlink_plain($params) {
return $params['message'] . '\\n\\n' . $params['link'];
}