im using django-registration, all is fine, the confirmation email was sending in plain text, but know im fixed and is sending in html, but i have a litter problem... the html code is showing:

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

and i dont need to show the html code like the ...

Any idea?

Thanks

link

68% accept rate
feedback

2 Answers

up vote 9 down vote accepted

I'd recommend sending both a text version and an html version. Look in the models.py of the django-registration for :

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

and instead do something like from the docs 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()
link
Yes Paul, thans for replay, but is not working i did in that way and nothing...but now is ok :) , now just a put the link without <a ... – Asinox Sep 12 '09 at 16:44
That will send a text email that some clients will create links for. If you ever need more interesting html, you will have to do what I recommended. – Paul Tarjan Sep 12 '09 at 21:25
yes, i tryed but dont work, but is ok :) ill try a litter more :) – Asinox Sep 13 '09 at 15:16
What was your error? I do this in my django-registration – Paul Tarjan Sep 14 '09 at 4:38
feedback

To avoid patching django-registration, you should extend the RegistrationProfile model with proxy=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()

And in your registration backend, just use HtmlRegistrationProfile instead of RegistrationProfile.

link
This is the way to go. Nice work. – ajt Sep 25 '11 at 13:05
How do i register the new profile with the registration backend? – Sam Nov 15 '11 at 9:57
How do I set the backend to HtmlRegistration profile instead of RegistrationProfile? – alexBrand May 7 at 14:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.