-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/mail #27
Feature/mail #27
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is some code formatting issues. Remove unnecessary line gaps and try Prettier
const CREDENTIALS = { | ||
HOST: "smtp.mailtrap.io", | ||
PORT: "2525", | ||
USER: "c8cca3941aea9c", | ||
PASSWORD: "18763bafd470a9", | ||
}; | ||
|
||
export default { | ||
CREDENTIALS, | ||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't push secrets to a public repository. Gitignore it. when we're deploying the app we can put this as a config file. But still wondering how we configure this for github actions 🤨. Need to find a way
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PR is overall good. But need to find a way for config file.
@ebonynon @susithrupasinghe Let's discuss about that in discussion
Gonna merge this for now. Let's discuss the issue in here #29 |
Purpose
Sending Mails to user/ set of users #6
Goals
Approach
Checklist