-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Cliam upgrade to new major version (#70)
* chore: upgrade cliam to new major version * chore: upgrade cliam to new major.minor version
- Loading branch information
1 parent
4d62c9e
commit 43317e0
Showing
7 changed files
with
408 additions
and
167 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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
require('dotenv').config(); | ||
module.exports = { | ||
sandbox: true, | ||
variables: { | ||
domain: "https://wwww.example.com", | ||
addresses: { | ||
from: { | ||
name: "YOUR_FROM_NAME", | ||
email: "[email protected]" | ||
}, | ||
replyTo: { | ||
name: "YOUR_REPLY_TO_NAME", | ||
email: "[email protected]" | ||
} | ||
} | ||
}, | ||
transporters: [ | ||
{ | ||
id: 'smtp-transporter', | ||
mode: 'smtp', | ||
auth: { | ||
username: "[email protected]", | ||
password: "5cDumYP68aFcpT15uV" | ||
}, | ||
options: { | ||
host: "smtp.ethereal.email", | ||
port: 587, | ||
secure: false, | ||
} | ||
} | ||
] | ||
}; |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.