Skip to content

Commit 1696c91

Browse files
committed
fix merge error
1 parent ca5e9ab commit 1696c91

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

lib/vsc/utils/mail.py

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -149,14 +149,15 @@ def _send(self, mail_from, mail_to, mail_subject, msg):
149149
else:
150150
s.quit()
151151

152-
def sendTextMail(self,
153-
mail_to,
154-
mail_from,
155-
reply_to,
156-
mail_subject,
157-
message,
158-
cc=None,
159-
bcc=None):
152+
def sendTextMail(
153+
self,
154+
mail_to,
155+
mail_from,
156+
reply_to,
157+
mail_subject,
158+
message,
159+
cc=None,
160+
bcc=None):
160161
"""Send out the given message by mail to the given recipient(s).
161162
162163
@type mail_to: list
@@ -252,7 +253,7 @@ def sendHTMLMail(
252253
@type cc: list
253254
@type bcc: list
254255
255-
@param mail_to: a valid recipient email address or comma-separated string of email addresses
256+
@param mail_to: a list of valid email addresses
256257
@param mail_from: a valid sender email address.
257258
@param reply_to: a valid email address for the (potential) replies.
258259
@param html_message: the actual payload, body of the mail

0 commit comments

Comments
 (0)