go-gomail / gomail

The best way to send emails in Go.
MIT License
4.29k stars 569 forks source link

how to set timeout when send #197

Closed imqishi closed 1 month ago

imqishi commented 1 month ago

sometimes I found that send will block, so is there any way to set timeout to avoid program hang?

wneessen commented 1 month ago

To my knowledge the package does not support timeouts. Unfortunately also the maintainer has sadly passed away.

You might want to consider checking wneessen/go-mail which has context.Context support.

imqishi commented 1 month ago

To my knowledge the package does not support timeouts. Unfortunately also the maintainer has sadly passed away.

You might want to consider checking wneessen/go-mail which has context.Context support.

Thanks for your help, I will try it ~