このようなURLを含むメールをdjangoに送信させる必要があります
http://www.mysite.org/history/
「履歴」は次のように取得されます。
history_url = urlresolvers.reverse('satchmo_order_history')
history_url は、メールを送信する関数に渡すパラメーターであり、正しく '/history/' を生成します。しかし、どうすれば最初の部分を取得できますか? (http://www.mysite.org)
編集 1
このようにすることについて何か間違っていることや移植性がないことはありますか? :
history = urlresolvers.reverse('satchmo_order_history')
domain = Site.objects.get_current().domain
history_url = 'http://' + domain + history