7 Module implementing some helpers for Google mail. |
7 Module implementing some helpers for Google mail. |
8 """ |
8 """ |
9 |
9 |
10 import os |
10 import os |
11 |
11 |
12 import Globals |
12 from eric7 import Globals |
13 |
13 |
14 SCOPES = "https://www.googleapis.com/auth/gmail.send" |
14 SCOPES = "https://www.googleapis.com/auth/gmail.send" |
15 CLIENT_SECRET_FILE = "eric_client_secret.json" # secok |
15 CLIENT_SECRET_FILE = "eric_client_secret.json" # secok |
16 TOKEN_FILE = "eric_python_email_send_token.json" # secok |
16 TOKEN_FILE = "eric_python_email_send_token.json" # secok |
17 APPLICATION_NAME = "Eric Python Send Email" |
17 APPLICATION_NAME = "Eric Python Send Email" |