How to log all outgoing mails
kenorb - January 22, 2009 - 11:09
| Project: | Send |
| Version: | HEAD |
| Component: | Code |
| Category: | support request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | won't fix |
Jump to:
Description
How my mails can be logged via mimemail?

#1
Can you please provide more information? I'm not sure what you're requesting here.
Jer
#2
I mean ability to log all outgoing mails, when, to who mail was send, what was the subject and eventually data.
#3
That's pretty far outside the scope of what Mime Mail does. It's possible to write a small module that does what you're asking, or you can possibly use Send, which performs this type of tracking for many types of functions.
#4
It's possible to log all outgoing mails via Send module (watchdog) ?
#5
Send logs messages sent through its own API. For logging all sent messages, you will want to look into creating a small module for your own use that uses hook_mail alter:
http://api.drupal.org/api/function/hook_mail_alter/6
Thanks!