Skip to content

Commit b77a282

Browse files
committed
add real email addresses inside the email notification
1 parent 1073a5e commit b77a282

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyclowder/connectors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def email(self, emaillist, clowderurl):
105105
msg = MIMEMultipart('alternative')
106106
msg['Subject'] = self.emailmsg['Subject']
107107
msg['From'] = self.emailmsg['From']
108-
108+
msg['To'] = ' '.join(emaillist)
109109
content = "%s \n%s" % (self.emailmsg['Body'], clowderurl)
110110
content = MIMEText(content.encode('utf-8'), _charset='utf-8')
111111
msg.attach(content)

0 commit comments

Comments
 (0)