Git Product home page Git Product logo

Comments (5)

vjeantet avatar vjeantet commented on May 16, 2024 1

thanks you, i get it !

from go-simple-mail.

xhit avatar xhit commented on May 16, 2024

Keep alive not close the connection to SMTP server after send the email, but you need to do a NOOP to avoid SMTP server close the connection by inactivity. See #13.

from go-simple-mail.

vjeantet avatar vjeantet commented on May 16, 2024

Hello @xhit, In my case the smtp server crashed (or a network packet loss)

I expected the smtpClient to try to rebuild the connection by itself or return an specific error so i could handle to rebuild the smtpClient.

As of today, even is the server comes back online, the SmtpClient try to send mails throught the old broken connection.

from go-simple-mail.

xhit avatar xhit commented on May 16, 2024

It's the expected behavior. This package not auto reconnect when SMTP was disconnected by network error or inactivity.

This need to be handle by developer.

I have a big project that handle that. I will create a example code in next hours with this implementation.

This it's the logic, and using the NOOP with this package:

  • connect to SMTP server with keep alive true
  • create a goroutine that send a NOOP every 10 seconds if last email was sent after that time only
  • send the email

If email is ok, the NOOP timeout variable need to be reset to 0. If error, then reconnect.

Note that a NOOP need to be sent only if SMTP is not in use.

NOOP keep the SMTP connection alive to avoid a disconnection by inactivity and also to check if connection it's available because return same error you have, so if happens you need to reconnect.

You need to reconnect only if error is not an SMTP error code. You can unwrap the error to get the code (3 digits number).

The project using this package is currently in production sending 1000 emails/seconds (transactions, not spam) without issues.

Maybe this operation should be done in package without dev intervention. I don't know if devs like this type of magic.

from go-simple-mail.

xhit avatar xhit commented on May 16, 2024

Closed because is not an issue, but in future can be a new feature.

from go-simple-mail.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.