Beispiel #1
0
 def notify_sent(self, message):
     recips = and_list(
         ["{c%s{g" % self.format_recipient(rname, rid) for rid, rname in message.recipients.iteritems()]
     )
     m = "{gMail sent to %s." % recips
     self.msg(m)
     return message
Beispiel #2
0
 def description(self):
     r = and_list(map(self.owner.name_for, self.recipients))
     return "@mail message to %s regarding '%s'" % (r, self.subject)
Beispiel #3
0
 def description(self):
     r = and_list(map(self.owner.name_for, self.recipients))
     return "@mail message to %s regarding '%s'" % (r, self.subject)
Beispiel #4
0
 def _names(self, followers):
     return str_utils.and_list([self.actor.name_for(f) for f in followers])