本文整理汇总了Python中mailpile.Mailpile.message_update_send方法的典型用法代码示例。如果您正苦于以下问题:Python Mailpile.message_update_send方法的具体用法?Python Mailpile.message_update_send怎么用?Python Mailpile.message_update_send使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类mailpile.Mailpile
的用法示例。
在下文中一共展示了Mailpile.message_update_send方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: assert
# 需要导入模块: from mailpile import Mailpile [as 别名]
# 或者: from mailpile.Mailpile import message_update_send [as 别名]
'from': [MY_FROM],
'bcc': ['[email protected]'],
'mid': [new_mid],
'subject': ['This the TESTMSG subject'],
'body': ['Hello world!']
}
mp.message_update(**msg_data)
assert(mp.search('tag:drafts').result['stats']['count'] == 1)
assert(mp.search('tag:blank').result['stats']['count'] == 0)
assert(mp.search('TESTMSG').result['stats']['count'] == 0)
assert(not os.path.exists(mailpile_sent))
# Send the message (moves from Draft to Sent, is findable via. search)
del msg_data['subject']
msg_data['body'] = ['Hello world: thisisauniquestring :)']
mp.message_update_send(**msg_data)
mp.sendmail()
assert(mp.search('tag:drafts').result['stats']['count'] == 0)
assert(mp.search('tag:blank').result['stats']['count'] == 0)
assert('the TESTMSG subject' in contents(mailpile_sent))
assert('thisisauniquestring' in contents(mailpile_sent))
assert(MY_FROM in grep('X-Args', mailpile_sent))
assert('[email protected]' in grep('X-Args', mailpile_sent))
assert('[email protected]' not in grepv('X-Args', mailpile_sent))
for search in (['tag:sent'],
['bcc:[email protected]'],
['thisisauniquestring'],
['subject:TESTMSG']):
say('Searching for: %s' % search)
assert(mp.search(*search).result['stats']['count'] == 1)
os.remove(mailpile_sent)