Tried to run this Python GAE code

      vto = urllib.unquote(self.request.get('vto'))
      vfr = urllib.unquote(self.request.get('vfr'))
      vcc = urllib.unquote(self.request.get('vcc'))
      vbcc = urllib.unquote(self.request.get('vbcc'))
      vsub =urllib.unquote( self.request.get('vsub'))
      vmsg = urllib.unquote(self.request.get('vmsg'))
      mail.send_mail(sender=vfr,to=vto,cc=vcc,bcc=vbcc,subject=vsub,body=vmsg)  

I get this error irregardless of running within another program or via URL.  I 
think a number of other users have this problem too ....

Traceback (most recent call last):
  File 
"/base/python_runtime/python_lib/versions/1/google/appengine/ext/webapp/__init__.py",
 line 702, in __call__
    handler.post(*groups)
  File "/base/data/home/apps/s~optimumtool/2.352233657943613150/index.py", line 
601, in post
    mail.send_mail(sender=vfr,to=vto,cc=vcc,bcc=vbcc,subject=vsub,body=vmsg)
  File 
"/base/python_runtime/python_lib/versions/1/google/appengine/api/mail.py", line 
351, in send_mail
    message.send(make_sync_call)
  File 
"/base/python_runtime/python_lib/versions/1/google/appengine/api/mail.py", line 
854, in send
    raise e
ApplicationError: ApplicationError: 1 Internal error


It worked before but just suddenly decided not to.... any ideas ? Thanks


-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/q48YLBWr_7EJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to