Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SES error missing final '@domain'

I'm using python lib boto for sending emails via SES. And when I tried to send to more than 30 (but less than 50, so limit is not exceeded) recipients, I got an error:

  <Error>
    <Type>Sender</Type>
    <Code>InvalidParameterValue</Code>
    <Message>Missing final '@domain'</Message>
  </Error>

My to_addresses is empty list, all recipients are in bcc_addresses list.

What does it mean? Every recipient's address is valid and sender address is verified and valid.

like image 445
Vladimir Solovyov Avatar asked Dec 25 '14 14:12

Vladimir Solovyov


1 Answers

I had this error and the problem was the my to_addresses email address was malformed.

like image 64
Ryan Shillington Avatar answered Oct 24 '22 01:10

Ryan Shillington