LPgenerator / django-db-mailer

Django module to easily send emails/sms/tts/push using django templates stored on database and managed through the Django Admin
https://github.com/LPgenerator/django-db-mailer
GNU General Public License v2.0
256 stars 80 forks source link

как передать параметры в шаблон #10

Closed ghost closed 9 years ago

ghost commented 9 years ago

Доброго времени суток

    send_db_mail(
        slug='test',
        recipient='test@test.test',
        {
            'test': 'test test test bla bla bla',
        },
    )

получаю

non-keyword arg after keyword arg (views.py, line 86)
gotlium commented 9 years ago

доброго. я уже писал прежде #5 что slug и recipient лишь для примера.

send_db_mail(
    'test', 'test@test.test',
    {
        'test': 'test test test bla bla bla',
    },
)
ghost commented 9 years ago

Пасиб