(self, priority, from_email)
| 13 | class Email_Notification(Notification_Service): |
| 14 | |
| 15 | def __init__(self, priority, from_email): |
| 16 | super().__init__(priority) |
| 17 | self.from_email = from_email |
| 18 | |
| 19 | def send(self, to_email, message): |
| 20 | super().send(self.from_email, to_email, message) |