I am sending emails like this why I get an error when the application
was uploaded to the GAE server
and the most weir thing is that I get no error out put on my log.
sender = "
GAE_...@GAE.COM";
subject = "Your Account on GAE-SJTU SURVEY";
to =
user.name + " <" + user.email + ">";
body = "Dear"
message = mail.EmailMessage(
sender =
sender,
subject = subject);
message.to = to;
message.body = body;
message.send()