62
62
"""See `IPersonNotification`."""
63
63
return len(self.to_addresses) > 0
66
66
"""See `IPersonNotification`."""
69
69
"Can't send a notification to a person without an email.")
70
73
from_addr = config.canonical.bounce_address
71
simple_sendmail(from_addr, self.to_addresses, self.subject, self.body)
74
simple_sendmail(from_addr, to_addresses, self.subject, self.body)
72
75
self.date_emailed = datetime.now(pytz.timezone('UTC'))