From 92faf9500adb68b6a67269dc6fe74ce47e3056ac Mon Sep 17 00:00:00 2001 From: pedromorgan Date: Wed, 6 Dec 2017 18:20:49 +0000 Subject: [PATCH] Unfortunate fork ;-( Original maintainer missing/uncontactable --- .gitignore | 17 +++++++++++++++++ .travis.yml | 14 +++++++++----- CHANGELOG.md | 3 +++ README.md | 11 ++++++----- doc.go | 2 +- 5 files changed, 36 insertions(+), 11 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cc4721c --- /dev/null +++ b/.gitignore @@ -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/ diff --git a/.travis.yml b/.travis.yml index 48915e7..64e9339 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 + diff --git a/CHANGELOG.md b/CHANGELOG.md index a797ab4..be37fba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/README.md b/README.md index b3be9e1..4380c2e 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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. @@ -29,7 +30,7 @@ Gomail supports: ## Documentation -https://godoc.org/gopkg.in/gomail.v2 +https://godoc.org/github.com/go-mail/gomail ## Download @@ -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 diff --git a/doc.go b/doc.go index a8f5091..1c7d183 100644 --- a/doc.go +++ b/doc.go @@ -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