pyramid_mailer icon indicating copy to clipboard operation
pyramid_mailer copied to clipboard

A package for sending email from your Pyramid application

Results 13 pyramid_mailer issues
Sort by recently updated
recently updated
newest added

Python 3.10, if relevant, ``` >>> m = pyramid_mailer.message.Message(sender='ÄÖ ', recipients=['baz@quux'], body='foo') >>> print(m.to_message().as_string()) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: =?utf-8?b?w4TDliA8Zm9vQGJhcj4=?= To: baz@quux Content-Disposition: inline foo ``` The...

see https://github.com/Pylons/pyramid/issues/3712

Sometimes, e.g. in a containerised batch emailer, it is desirable to use pyramid_mailer without pulling in pyramid. The dependency exists only so that a few dozen lines of list manipulation...

Hi, I'm currently trying to embed an image in an email using the CID approach. The latest code on the master branch has support for setting the Content-ID, but it...

`master` has seen quite a bit of activity since the last release: https://github.com/Pylons/pyramid_mailer/compare/0.15.1...master Might it be a good idea to cut a new release? :thinking:

It's good practice on automatic generated mails to haven automatic error handling. To be able to have errors while delivering the Mail automatically handled is to have a e-mail address...

Is there a way to get if the pyramid_mailer is correctly configured (connection with the SMTP server is possible with given credentials). I know I could do that by sending...

It seems to me that repoze.sendmail has an SMTP mailer and a sendmail mailer. Both implement `IMailer`. Why does pyramid_mailer create both and expose itself as a wrapper around both...

Currently the message class assigns the subject as-is to the `MailBase` and then to the `email.message message`, not performing any character escaping, in contrast to the message body. If the...

I prefer to explicitly `config.include()` my app's dependencies rather than relying on the `.ini` file to correctly include them. It would be neat if there was a flag I could...