8000 GitHub - Izzur/mail-relay: Relay incoming http call to send mail with smtp
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Izzur/mail-relay

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mail Relay

API to relay incoming HTTP call to send SMTP email

Quick Start

go run main.go

Build

go build

Example Body

{
    "personalizations": [
        {
            "to": [
                {
                    "email": "john.doe@example.com",
                    "name": "John Doe"
                }
            ],
            "subject": "Hello, World!"
        }
    ],
    "content": [
        {
            "type": "text/plain",
            "value": "Heya!"
        }
    ],
    "from": {
        "email": "sam.smith@example.com",
        "name": "Sam Smith"
    },
    "reply_to": {
        "email": "sam.smith@example.com",
        "name": "Sam Smith"
    }
}

About

Relay incoming http call to send mail with smtp

Topics

Resources

License

Stars

Watchers

Forks

Contributors 2

  •  
  •  
0