Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I sent the following email via Django

    subject, from_email, to = 'site Registration', 'support@site.com', self.second_email
    text_content = 'Click on link to finish registration'
    html_content = '<html><body><a href="site.com/accounts/user/' + self.slug +'">Click Here</a></body></html>'
    msg = EmailMultiAlternatives(subject, text_content, from_email, [to])
    msg.attach_alternative(html_content, "text/html")
    msg.send()

When I went the the email (google and yahoo email) they both displayed the Click Here text in blue (I assume this means that it's recognized as a link), however, the link is not clickable and does not link to site.com/acc... What am I doing wrong?

Thanks!

share|improve this question

1 Answer

up vote 1 down vote accepted

You probably need to make it a valid URL: (note the included scheme)

<a href="http://site.com/accounts/user/' + self.slug +'">
share|improve this answer
AWESOME THX A BUNCH!!!!! – Derek Jun 24 '11 at 8:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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