-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigs.json
23 lines (23 loc) · 1.94 KB
/
configs.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"localhost_port": 80, -> use whatever port you want to
"mail_host": "smtp.gmail.com", -> your smtp port
"mail_port": 465, -> use port 465 (for SSL), or port 587 (for TLS)
"mail_secure": true, -> if true the connection will use TLS when connecting to server. If false (the default) then TLS is used if server supports the STARTTLS extension. In most cases set this value to true if you are connecting to port 465. For port 587 or 25 keep it false
"mail_auth_user": "[email protected]", -> user is the username
"mail_auth_pass": "password", -> pass is the password for the user if normal login is used
"mail_from": "[email protected]", -> The email address of the sender. All email addresses can be plain ‘[email protected]’
"mail_username": "John Cena", -> The name to be shown it's from
"mail_subject": "Application for Java Developer", -> The subject of the email
"attachment_filename": "CV.pdf", -> filename to be reported as the name of the attached file. Use of unicode is allowed
"attachment_path": "https://example.com/CV.pdf or C:\Users\admin\Documents\CV.pdf", -> path to the file if you want to stream the file instead of including it (better for larger attachments)
"linkedin": "https://www.linkedin.com/in/example/", -> Your linkedin profile
"github": "https://github.com/example/", -> Your github profile
"googledev": "https://example.com", -> Your google dev profile
"portfolio": "https://portfolio.com/", -> Your portfolio link
"phone": "+91 98765 43210", -> Your mobile number
"jobrole": "Java Developer", -> your interested job role
"max_time": 600000, -> maximum time in milisecond it will take to send another email
"min_time": 300000, -> minimum time in milisecond it will take to send another email
"loop": 3, -> how many times it will send the same mail to the same recipient
"mailerfilepath": "filepath/mailer.html" -> the location where your mailer.html file is saved at
}