Can an application send mail From: the logged in user's Gmail account?
The documentation at
http://code.google.com/appengine/docs/python/mail/sendingmail.html
has this to say
"The sender address can be either the email address of a registered
administrator for the application, or the email address of the current
signed-in user (the user making the request that is sending the
message)"
The current signed-in user has a Gmail account used to sign in, is
that a valid sender address?
Just below that paragraph there's a code snippet that has
@login_required before a POST request, which does not work, so maybe
the paragraph I cited is incomplete or not valid either anymore?
thank you
N.
On Jan 23, 8:32 pm, Alex Nemoy <nemo1...@gmail.com> wrote:
> Hello,
>
> Can an application send mail From: the logged in user's Gmail account?
>
> The documentation athttp://code.google.com/appengine/docs/python/mail/sendingmail.html
--
You received this message because you are subscribed to the Google Groups "Google App Engine" group.
To post to this group, send email to google-a...@googlegroups.com.
To unsubscribe from this group, send email to google-appengi...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
> I assume the queued task has the same privileges as the request that queued it and which only works when logged in.I don't know for sure, but I'd guess that's not the case. You can use "login: admin" to stop users calling the task URLs, so I suspect they run in the same way as cron jobs, which are considered to be admins.
login: admin, they cannot use URL paths restricted with login: required.'