Method
_sent_ok
(
self, result: Any, to: list[str], cc: list[str], subject: str, nattachs: int
)
Source from the content-addressed store, hash-verified
| 165 | return dfd |
| 166 | |
| 167 | def _sent_ok( |
| 168 | self, result: Any, to: list[str], cc: list[str], subject: str, nattachs: int |
| 169 | ) -> None: |
| 170 | logger.info( |
| 171 | "Mail sent OK: To=%(mailto)s Cc=%(mailcc)s " |
| 172 | 'Subject="%(mailsubject)s" Attachs=%(mailattachs)d', |
| 173 | { |
| 174 | "mailto": to, |
| 175 | "mailcc": cc, |
| 176 | "mailsubject": subject, |
| 177 | "mailattachs": nattachs, |
| 178 | }, |
| 179 | ) |
| 180 | |
| 181 | def _sent_failed( |
| 182 | self, |
Callers
nothing calls this directly
Tested by
no test coverage detected