1

「ここをクリック」をハイパーリンクにして、クリックすると、たとえば 127.0.0.1 に移動したいと思います。

 confirm_links = 'To confirm this order <a href= "127.0.0.1://confirmorder/" > click here </a> '

これは通常は機能すると思いますが、コードを電子メールで送信しています。

4

1 に答える 1

-1
from django.core.mail import send_mail

send_mail('Subject here', 'Here is the message.', 'from@example.com',
    ['to@example.com'], fail_silently=False)

また

このようなものが欲しいですか?

<a href="mailto:someone@example.com?Subject=Hello%20again" target="_top">
于 2013-07-29T18:33:29.257 に答える