How to include Non-AscII character in python appengine send html mail
My problem is that I want to compose an email in python environment of google appengine. When I add Greek characters to the body of my message I get: SyntaxError: Non-ASCII character '\xce'
megssage.html = """
<html>
<body>
παρα开发者_开发百科δειγμα
</body>
</html>"""
Use this shebang:
# -*- coding: utf-8 -*-
精彩评论