-
Notifications
You must be signed in to change notification settings - Fork 6
/
mailConfig.js
13 lines (12 loc) · 958 Bytes
/
mailConfig.js
1
2
3
4
5
6
7
8
9
10
11
12
13
const SERVICE_PROVIDER = 'Gmail';
const RECIPIENT = '[email protected]';
const SENDER = 'covid-19-vaccine-alerts-cowin';
const SUBJECT = 'New vaccination slots are available on COWIN. Book appointment now';
const DAILY_DIGEST_SUBJECT = 'Daily digest: covid-19-vaccine-alerts-cowin';
const FIRST_EMAIL_SUBJECT = 'Welcome to covid-19-vaccine-alerts-cowin application';
const COWIN_URL = 'https://www.cowin.gov.in/home';
const MOFHW_URL = 'https://www.mohfw.gov.in/covid_vaccination/vaccination/faqs.html';
const COWIN_LOGO_URL = 'https://github.com/sinhadotabhinav/covid-19-vaccine-alerts-cowin/blob/master/src/assets/cowin-logo.png?raw=true';
const WHO_VACCINE_LOGO_URL = 'https://github.com/sinhadotabhinav/covid-19-vaccine-alerts-cowin/blob/master/src/assets/vaccine.png?raw=true';
module.exports = { SERVICE_PROVIDER, RECIPIENT, SENDER, SUBJECT, DAILY_DIGEST_SUBJECT, FIRST_EMAIL_SUBJECT, COWIN_URL, MOFHW_URL,
COWIN_LOGO_URL, WHO_VACCINE_LOGO_URL };