django + отправить письмо в html с django-Регистрация

im с помощью django-регистрации, все в порядке, письмо с подтверждением отправлялось в обычном тексте, но знаю, что im исправлен и отправляет в html, но у меня проблема с мусором... html-код показывает:

<a href="http://www.example.com/accounts/activate/46656b86eefc490baf4170134429d83068642139/">http://www. example.com/accounts/activate/46656b86eefc490baf4170134429d83068642139/</a>

и мне не нужно показывать html-код, как ...

есть идеи?

спасибо

4 ответов


Я бы рекомендовал отправить как текстовую версию, так и html-версию. Посмотрите в models.py Джанго-регистрация для:

send_mail(subject, message, settings.DEFAULT_FROM_EMAIL, [self.user.email])

и вместо этого сделать что-то вроде из документов http://docs.djangoproject.com/en/dev/topics/email/#sending-alternative-content-types

from django.core.mail import EmailMultiAlternatives

subject, from_email, to = 'hello', 'from@example.com', 'to@example.com'
text_content = 'This is an important message.'
html_content = '<p>This is an <strong>important</strong> message.</p>'
msg = EmailMultiAlternatives(subject, text_content, from_email, [to])
msg.attach_alternative(html_content, "text/html")
msg.send()

чтобы избежать исправления django-registration, вы должны расширить модель RegistrationProfile с помощью прокси=True:

models.py

class HtmlRegistrationProfile(RegistrationProfile):
    class Meta:
        proxy = True
    def send_activation_email(self, site):
        """Send the activation mail"""
        from django.core.mail import EmailMultiAlternatives
        from django.template.loader import render_to_string

        ctx_dict = {'activation_key': self.activation_key,
                    'expiration_days': settings.ACCOUNT_ACTIVATION_DAYS,
                    'site': site}
        subject = render_to_string('registration/activation_email_subject.txt',
                                   ctx_dict)
        # Email subject *must not* contain newlines
        subject = ''.join(subject.splitlines())

        message_text = render_to_string('registration/activation_email.txt', ctx_dict)
        message_html = render_to_string('registration/activation_email.html', ctx_dict)

        msg = EmailMultiAlternatives(subject, message_text, settings.DEFAULT_FROM_EMAIL, [self.user.email])
        msg.attach_alternative(message_html, "text/html")
        msg.send()

и в вашем бэкэнде регистрации просто используйте HtmlRegistrationProfile вместо RegistrationProfile.


Я знаю, что это старый и регистрационный пакет больше не поддерживается. На случай, если кто-то все еще этого хочет. Дополнительные шаги wrt к ответу @bpierre:
- подкласс RegistrationView, то есть ваше приложение views.py

class MyRegistrationView(RegistrationView):
...
def register(self, request, **cleaned_data):
    ...
    new_user = HtmlRegistrationProfile.objects.create_inactive_user(username, email, password, site)

- в ваши изменения urls.py вид на суб-классифицировать вид, т. е. - Пункт списка

url(r'accounts/register/$', MyRegistrationView.as_view(form_class=RegistrationForm), name='registration_register'),'

этот парень продлил defaultBackend позволяет нам добавить HTML-версию электронной почты активации.

в частности, задание альтернативной версии выполнено здесь

мне удалось успешно использовать бэкэнд-часть