11 import os |
11 import os |
12 |
12 |
13 import Globals |
13 import Globals |
14 |
14 |
15 SCOPES = 'https://www.googleapis.com/auth/gmail.send' |
15 SCOPES = 'https://www.googleapis.com/auth/gmail.send' |
16 CLIENT_SECRET_FILE = 'eric_client_secret.json' |
16 CLIENT_SECRET_FILE = 'eric_client_secret.json' # secok |
17 TOKEN_FILE = 'eric_python_email_send_token.json' |
17 TOKEN_FILE = 'eric_python_email_send_token.json' # secok |
18 APPLICATION_NAME = 'Eric Python Send Email' |
18 APPLICATION_NAME = 'Eric Python Send Email' |
19 |
19 |
20 RequiredPackages = ( |
20 RequiredPackages = ( |
21 "google-api-python-client", |
21 "google-api-python-client", |
22 "requests-oauthlib", |
22 "requests-oauthlib", |