Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# mailer

[![Go Reference](https://pkg.go.dev/badge/github.com/p2p-b2b/mailer.svg)](https://pkg.go.dev/github.com/p2p-b2b/mailer)
![GitHub go.mod Go version](https://img.shields.io/github/go-mod/go-version/p2p-b2b/mailer?style=plastic)
[![Go Report Card](https://goreportcard.com/badge/github.com/p2p-b2b/mailer)](https://goreportcard.com/report/github.com/p2p-b2b/mailer)
[![Go Reference](https://pkg.go.dev/badge/github.com/slashdevops/mailer.svg)](https://pkg.go.dev/github.com/slashdevops/mailer)
![GitHub go.mod Go version](https://img.shields.io/github/go-mod/go-version/slashdevops/mailer?style=plastic)
[![Go Report Card](https://goreportcard.com/badge/github.com/slashdevops/mailer)](https://goreportcard.com/report/github.com/slashdevops/mailer)

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).

Expand All @@ -25,7 +25,7 @@ This package provides a robust and concurrent email sending service for Go appli
To use this library in your project, install it using `go get`:

```sh
go get github.com/p2p-b2b/mailer@latest
go get github.com/slashdevops/mailer@latest
````

## Components
Expand Down Expand Up @@ -77,7 +77,7 @@ import (
"syscall"
"time"

"github.com/p2p-b2b/mailer" // Assuming this is the module path
"github.com/slashdevops/mailer" // Assuming this is the module path
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion example/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"syscall"
"time"

"github.com/p2p-b2b/mailer" // Import the library
"github.com/slashdevops/mailer" // Import the library
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/p2p-b2b/mailer
module github.com/slashdevops/mailer

go 1.24.3
Loading