On 3/7/2011 1:26 PM, Ian wrote:
On 06/03/2011 13:56, Victor Subervi wrote:
gmail, for whatever reason, filters out emails send to the same
address from which they are sent.
Its possibly a protection against circular forwarding.
Or spam. Many spam messages sent to me have me as sender.
--
Ter
On 06/03/2011 13:56, Victor Subervi wrote:
gmail, for whatever reason, filters out emails send to the same
address from which they are sent.
Its possibly a protection against circular forwarding.
Ian
--
http://mail.python.org/mailman/listinfo/python-list
On Sat, Mar 5, 2011 at 11:11 PM, Littlefield, Tyler wrote:
> >ourEmail = '
> myemaila...@gmail.com'
>
> >ourEmail = '
> q...@xxx.com'
>
> You redefine this twice.
>
Right. The second definition, of course, overwrites the first. That is
deliberate. I simply comment out the second when I'm testin
>ourEmail = '
myemaila...@gmail.com'
>ourEmail = '
q...@xxx.com'
You redefine this twice. You also don't define a variable down lower.
># to_address = ourEmail,
> from_address = ourEmail,
> to_address = emailText,
I could be wrong, but emailText isn't defined. Perhaps a better var
Hi;
I have this code:
#!/usr/bin/python
import sys, os, string
import cgitb; cgitb.enable()
import cgi
cwd = os.getcwd()
dirs = string.split(cwd, '/')
dirs = dirs[1:-1]
backLevel = '/' + string.join(dirs, '/')
sys.path.append(cwd)
sys.path.append(backLevel)
import string
form = cgi.FieldStorage()