Just reporting a possible incompatibility with 'SMTP Authentication Support' (Version 6.x-1.0-beta4)

Attempting to add a comment to a node which is being watched gives the error 'Invalid address: "(Site Name)"' on a white page.

Nonetheless, the email from Watcher is sent through to the end user, and the comment is still added to the node.

Comments

earok’s picture

Just an update -

Fixed the issue on my site by altering the line in the watcher.module

$message = drupal_mail('watcher', 'notification', $to, $language, $params, $from, true);

To read:

$message = drupal_mail('watcher', 'notification', $to, $language, $params);

Now it delivers the message without generating an error.

solipsist’s picture

Alright, one of the new features to be added soon is the ability to select sender field format. Watcher uses the "Site Name " format to make the sender of the email appear as the Site Name of the site instead of its contact email address, since I think it looks a lot better. Certain modules cannot handle that, for which there is a workaround in the code but it cannot cover every possible one. In the future, it'll be possible to choose whether to use Name, Name or just email as sender.