moyeen52
moyeen52

Reputation: 425

Plone: Getting sent mail status

I was reading https://stackoverflow.com/questions/30020128/tracing-postfix-mail-status In fact I have tried-

   from Products.CMFCore.utils import getToolByName   
   mailhost = getToolByName(context, 'MailHost') 
   print mailhost.my_mails()

I can't manage to read my sent mail status. Is there any way to get sent mail status? I'm thinking about log file. But getting that info with plone would be nice. Thanks for your suggestion in advance.

Upvotes: 1

Views: 104

Answers (1)

T. Kim Nguyen
T. Kim Nguyen

Reputation: 121

Have you looked at http://docs.plone.org/develop/plone/misc/email.html? You get immediate feedback if you're unable to send mail.

Upvotes: 1

Related Questions