Changes between Version 1 and Version 2 of Docs/825gen2/Dev/Networking/SendEmail
- Timestamp:
- 02/15/24 08:32:59 (9 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/825gen2/Dev/Networking/SendEmail
v1 v2 3 3 The 825gen2 can send emails. 4 4 5 The sendmail and msmtp commands are included in our Yocto Linux build. 6 7 {{{ 8 cd /home/root 9 10 11 Create the msmtp config file 12 13 nano ~/.msmtprc 14 15 defaults 16 tls on 17 18 account gmail 19 auth on 20 host smtp.gmail.com 21 port 587 22 user wilsonwareapps@gmail.com 23 from wilsonwareapps@gmail.com 24 25 account default : gmail 26 }}} 27 28 Google no longer allows applications to use regular Google login password. 29 Create an app specific password in google web portal 30 31