Are you more automatic or manual?
Hi all 👋,
Continuing my contribution to the developer community as app maker, today I propose to discu...
For further actions, you may consider blocking this person and/or reporting abuse
Brilliant, Anthony! Very clever!
Thank you 🙏
Great write up! And Zcode looks pretty cool, looking forward to checking it out!
Thank you Andrew 😊
How to encrypt mail & password?
Hi,
I don't know if I'm answering your question correctly but you can do something like declare a json file containing your credentials:
google.json
Then use it:
You can also export your variable like this:
export GOOGLE_MAIL="XXX@gmail.com"
Then in your node script:
I hope this will help you 😊
I've seen in smtpjs.com where you can encrypt your data by providing host name, email address and password, & port number. It gives secure token, but still here it's json file that might be accessible, isn't it?
As long as the code is running on your server with NodeJS, the JSON file is not accessible. My comment is just about how to avoid to commit your credentials in Github as @darthwalsh pointed out.
Ohh nice
Can we send mail if two step verification is enabled for our mail?
Google app passwords are meant to be used in automation, bypassing 2FA. Make sure not to upload them to GitHub!