コード例 #1
0
ファイル: mail.py プロジェクト: zhiqunq/sentry
 def html_body(self):
     try:
         return inline_css(
             render_to_string(self.html_template, self.context))
     except Exception:
         traceback.print_exc()
         raise
コード例 #2
0
ファイル: mail.py プロジェクト: NuttasitBoonwat/sentry
 def html_body(self):
     try:
         return inline_css(render_to_string(self.email.get_html_template(), self.get_context()))
     except Exception:
         import traceback
         traceback.print_exc()
         raise
コード例 #3
0
 def html_body(self):
     try:
         return inline_css(render_to_string(self.email.get_html_template(), self.get_context()))
     except Exception:
         import traceback
         traceback.print_exc()
         raise
コード例 #4
0
ファイル: mail.py プロジェクト: zooming-tan/sentry
 def html_body(self):
     try:
         return inline_css(render_to_string(self.html_template, self.context))
     except Exception:
         traceback.print_exc()
         raise
コード例 #5
0
ファイル: mail.py プロジェクト: yanheven/sentry
 def html_body(self):
     return inline_css(render_to_string(self.html_template, self.context))