-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
159baa2
commit 05bcd78
Showing
1 changed file
with
8 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,11 +6,15 @@ export const ENABLE_NOTIFICATION = Object.freeze({ | |
|
||
export const SENDER = Object.freeze({ | ||
address: '[email protected]', | ||
dailyLimit: 50, // most free services have a limit to prevent you from spamming others | ||
name: 'Your Full Name', // use your full name if you want your recipient to recognize you | ||
|
||
// Most free services have a limit to prevent you from spamming others | ||
dailyLimit: 0, // Use 0 to remove any limitations | ||
|
||
name: 'Your name here', // Use your full name if you want your recipient to recognize you | ||
password: 'bestPasswordEverObviously', | ||
service: 'Gmail', // Supported services: https://github.com/nodemailer/nodemailer/blob/master/lib/well-known/services.json | ||
// If you want to use Gmail, you may need to change some Gmail Account settings: https://nodemailer.com/usage/using-gmail/ | ||
|
||
// Supported services: https://github.com/nodemailer/nodemailer/blob/master/lib/well-known/services.json | ||
service: 'Gmail', // If you want to use Gmail, you may need to change some Gmail Account settings: https://nodemailer.com/usage/using-gmail/ | ||
}) | ||
|
||
export const RECIPIENTS = Object.freeze([ | ||
|