Reputation: 425
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
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