Skip to content

muquit/hello_gomail

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

hello_gomail

A minimal example showing how to use the gomail library.

Install

go get github.com/muquit/gomail@latest
go mod tidy

Build and Run

make        # fmt, vet, build
make run    # run with go run
make clean  # remove binary

Example

package main

import (
    "fmt"

    gomail "github.com/muquit/gomail"
)

func main() {
    fmt.Printf("gomail version: %s\n", gomail.Version)
}

Output

gomail version: v1.0.2

Authors

Real World Example

mailsend-go is a command-line tool that uses this library to send emails.

About

A minimal example showing how to use the gomail library

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors