Initial Revision
[ohcount] / test / expected_dir / py1.py / python / code
1 "\"
2 # still in string
3 "
4 '\'
5 # still in string
6 '
7 import smtplib
8 smtpServer='smtp.yourdomain.com';
9 fromAddr='xah@xahlee.org';
10 toAddr='xah@xahlee.org';
11 text='''Subject: newfound love
12 Hi friend,
13 long time no write, i have a new manifesto i
14 think it would be of interest for you to peruse.
15 ...
16 '''
17 server = smtplib.SMTP(smtpServer)
18 server.set_debuglevel(1)
19 server.sendmail(fromAddr, toAddr, text)
20 server.quit()