Index: notify.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/notify/notify.module,v retrieving revision 2.67.2.3 diff -u -r2.67.2.3 notify.module --- notify.module 15 Jul 2007 03:54:19 -0000 2.67.2.3 +++ notify.module 24 Mar 2008 14:23:31 -0000 @@ -317,7 +317,7 @@ /** * Helper function to send the notification email. - * + * * TODO: Needs some cleanup and themability. */ function _notify_send() { @@ -437,8 +437,8 @@ $body = t('Greetings @user,', array('@user' => $user->name)) ."\n\n". $body; $body .= "\n-- \n"; - $body .= t('This is an automatic e-mail from @sitename.', array('@sitename' => variable_get('site_name', 'Drupal')))."\n"; - $body .= t('To stop receiving these e-mails, change your notification preferences at @notify-url', array('@notify-url' => url("user/$user->uid/notify" , NULL, NULL, TRUE)))."\n"; + $body .= t('This is an automatic e-mail from @sitename.', array('@sitename' => variable_get('site_name', 'Drupal'))) ."\n"; + $body .= t('To stop receiving these e-mails, change your notification preferences at @notify-url', array('@notify-url' => url("user/$user->uid/notify" , NULL, NULL, TRUE))) ."\n"; $headers = array();//'From' => "$from_name <$from>"); if (!drupal_mail('notify_mail', $user->mail, $subject, wordwrap($body, 72), $from, $headers)) {