Skip to content

Commit

Permalink
Unfortunate fork ;-( Original maintainer missing/uncontactable
Browse files Browse the repository at this point in the history
  • Loading branch information
pedromorgan committed Dec 6, 2017
1 parent 81ebce5 commit 92faf95
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 11 deletions.
17 changes: 17 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@


# Binaries for programs and plugins
*.exe
*.dll
*.so
*.dylib

# Test binary, build with `go test -c`
*.test

# Output of the go coverage tool, specifically when used with LiteIDE
*.out


# IDE's
.idea/
14 changes: 9 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
language: go

go:
- 1.2
- 1.3
- 1.4
- 1.5
- 1.6
- 1.2x
- 1.3x
- 1.4x
- 1.5x
- 1.6x
- 1.7x
- 1.8x
- 1.9x
- tip

3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## 2017-12-06 Original project forked
https://github.com/go-gomail/gomail/issues/104

## [2.0.0] - 2015-09-02

- Mailer has been removed. It has been replaced by Dialer and Sender.
Expand Down
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Gomail
[![Build Status](https://travis-ci.org/go-gomail/gomail.svg?branch=v2)](https://travis-ci.org/go-gomail/gomail) [![Code Coverage](http://gocover.io/_badge/gopkg.in/gomail.v2)](http://gocover.io/gopkg.in/gomail.v2) [![Documentation](https://godoc.org/gopkg.in/gomail.v2?status.svg)](https://godoc.org/gopkg.in/gomail.v2)
[![Build Status](https://travis-ci.org/go-mail/gomail.svg?branch=v2)](https://travis-ci.org/go-mail/gomail) [![Code Coverage](http://gocover.io/_badge/gopkg.in/gomail.v2)](http://gocover.io/gopkg.in/gomail.v2) [![Documentation](https://godoc.org/github.com/go-mail/gomail?status.svg)](https://godoc.org/github.com/go-mail/gomail)

**IMPORTANT** - This is a fork of [go-gomail/gomail](https://github.com/go-gomail/gomail). See this [issue#104](https://github.com/go-gomail/gomail/issues/104)


## Introduction

Expand All @@ -10,8 +13,6 @@ Gomail can only send emails using an SMTP server. But the API is flexible and it
is easy to implement other methods for sending emails using a local Postfix, an
API, etc.

It is versioned using [gopkg.in](https://gopkg.in) so I promise
there will never be backward incompatible changes within each version.

It requires Go 1.2 or newer. With Go 1.5, no external dependencies are used.

Expand All @@ -29,7 +30,7 @@ Gomail supports:

## Documentation

https://godoc.org/gopkg.in/gomail.v2
https://godoc.org/github.com/go-mail/gomail


## Download
Expand All @@ -39,7 +40,7 @@ https://godoc.org/gopkg.in/gomail.v2

## Examples

See the [examples in the documentation](https://godoc.org/gopkg.in/gomail.v2#example-package).
See the [examples in the documentation](https://godoc.org/github.com/go-mail/gomail#example-package).


## FAQ
Expand Down
2 changes: 1 addition & 1 deletion doc.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Package gomail provides a simple interface to compose emails and to mail them
// efficiently.
//
// More info on Github: https://github.com/go-gomail/gomail
// More info on Github: https://github.com/go-mail/gomail
package gomail

0 comments on commit 92faf95

Please sign in to comment.