You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This package provides a robust and concurrent email sending service for Go applications. It allows queueing emails and sending them asynchronously using a pool of workers via a configurable backend (e.g., SMTP).
8
8
@@ -25,7 +25,7 @@ This package provides a robust and concurrent email sending service for Go appli
25
25
To use this library in your project, install it using `go get`:
26
26
27
27
```sh
28
-
go get github.com/p2p-b2b/mailer@latest
28
+
go get github.com/slashdevops/mailer@latest
29
29
````
30
30
31
31
## Components
@@ -77,7 +77,7 @@ import (
77
77
"syscall"
78
78
"time"
79
79
80
-
"github.com/p2p-b2b/mailer" // Assuming this is the module path
80
+
"github.com/slashdevops/mailer" // Assuming this is the module path
0 commit comments