Commit 1882a4e2 authored by Rafael Monnerat's avatar Rafael Monnerat

Added getMessageList to DummyMailHost to be possible to get the emails sent from URL.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@30402 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 341d9c79
......@@ -65,6 +65,9 @@ class DummyMailHost(MailHost):
self._previous_message = self._last_message
self._last_message = (mfrom, mto, messageText)
self._message_list.append(self._last_message)
def getMessageList(self):
""" Return message list"""
return self._message_list
class DummyTranslationService:
"""A dummy translation service where you can access translated msgids and
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment