Skip to content

Commit

Permalink
Merge pull request webpy#203 from asldevi/master
Browse files Browse the repository at this point in the history
fixed sending email through AWS
  • Loading branch information
anandology committed Jan 4, 2013
2 parents 703404e + 7b63e2e commit 0fbe0da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1493,7 +1493,7 @@ def send(self):
c = boto.ses.SESConnection(
aws_access_key_id=webapi.config.get('aws_access_key_id'),
aws_secret_access_key=web.api.config.get('aws_secret_access_key'))
c.send_raw_email(self.from_address, message_text, self.from_recipients)
c.send_raw_email(self.from_address, message_text, self.recipients)
else:
sendmail = webapi.config.get('sendmail_path', '/usr/sbin/sendmail')

Expand Down

0 comments on commit 0fbe0da

Please sign in to comment.