django-dbes
django-dbes copied to clipboard
A django package to speed-up your HTML email developpement workflow in django
When `shortcuts` attempts to `get_current_site` on a request that is [always None](https://github.com/EliotBerriot/django-dbes/blob/b6737ec72af8cefff4691c9167af5aa04ac62011/dbes/utils.py#L8), the attempt to log the email throws the error: `AttributeError 'NoneType' object has no attribute 'get_host'`. Is this...
I created an email via: ``` fp = open('sample.csv', 'rb') email = EmailMessage( 'Sample email header', 'Sample email body', settings.DEFAULT_FROM_EMAIL, [settings.SEND_EMAIL] ) filename = 'sample.csv' email.attach(filename, fp.read(), 'text/csv') email.send() ```...
After setting up `django-dbes` on a Django 1.11 project for the first time, running migrations for `dbes` results in the warning: ``` Your models have changes that are not yet...
Bumps [wheel](https://github.com/pypa/wheel) from 0.24.0 to 0.38.1. Changelog Sourced from wheel's changelog. Release Notes UNRELEASED Updated vendored packaging to 22.0 0.38.4 (2022-11-09) Fixed PKG-INFO conversion in bdist_wheel mangling UTF-8 header values...