Show More
@@ -60,9 +60,9 b' def connect(ui):' | |||
|
60 | 60 | |
|
61 | 61 | method = ui.config('email', 'method', 'smtp') |
|
62 | 62 | if method == 'smtp': |
|
63 | return smtp(ui) | |
|
63 | return _smtp(ui) | |
|
64 | 64 | |
|
65 | return sendmail(ui, method) | |
|
65 | return _sendmail(ui, method) | |
|
66 | 66 | |
|
67 | 67 | def sendmail(ui, sender, recipients, msg): |
|
68 | 68 | return connect(ui).sendmail(sender, recipients, msg) |
General Comments 0
You need to be logged in to leave comments.
Login now