Add files via upload

This commit is contained in:
Tomáš Dvořák
2025-05-19 09:52:43 +02:00
committed by GitHub
parent f4c0ed512d
commit 2e72ea8227
+5 -5
View File
@@ -47,11 +47,11 @@ func main() {
} }
func sendEmail(entry TripEntry) error { func sendEmail(entry TripEntry) error {
smtpHost := "smtp.example.com" smtpHost := "smtp.gmail.com"
smtpPort := "587" smtpPort := "465"
sender := "your@email.com" sender := "contact.dvorak@gmail.com"
password := "yourpassword" password := "pnhkcsahbwsbpyqj"
recipient := "fleet@company.com" recipient := "contact.dvorak@gmail.com"
auth := smtp.PlainAuth("", sender, password, smtpHost) auth := smtp.PlainAuth("", sender, password, smtpHost)