12 lines
253 B
Python
12 lines
253 B
Python
smtpconfig = {
|
|
"login" : {
|
|
"email" : "user@domain.com",
|
|
"password" : "your_password"
|
|
},
|
|
"server" : {
|
|
"host" : "smtp.domain.com",
|
|
"port" : 587
|
|
},
|
|
"from" : "user@domain.com"
|
|
}
|