Called once when worker starts - establish SMTP connection.
(self)
| 51 | self.last_connected = None |
| 52 | |
| 53 | def init(self): |
| 54 | """Called once when worker starts - establish SMTP connection.""" |
| 55 | self._connect_smtp() |
| 56 | |
| 57 | def _connect_smtp(self): |
| 58 | """Establish SMTP connection (simulated for demo).""" |
nothing calls this directly
no test coverage detected