jhickner / smtp-mail

Making it easy to send SMTP email from Haskell
BSD 3-Clause "New" or "Revised" License
75 stars 32 forks source link

bcc is not working #14

Open vagifverdi opened 10 years ago

vagifverdi commented 10 years ago

bcc field is ignored and instead is being included into main recipients email headers.

Not sure if the problem is in this library or in mime-mail package. Posted bug there too.

vagifverdi commented 10 years ago

I tested with sendmail functions from mime-mail package, and bcc works correctly. So the problem is in smtp-mail package.

matchwood commented 8 years ago

I encountered a similar issue, with cc and bcc failing. Fortunately this package: http://hackage.haskell.org/package/HaskellNet-0.5/docs/Network-HaskellNet-SMTP.html does work as expected, and in my case it was an easy switch to make (see particularly sendMimeMail2).