{"id":34159802,"url":"https://github.com/jiachinzhao/gomail","last_synced_at":"2025-12-15T08:04:26.464Z","repository":{"id":57486552,"uuid":"146440236","full_name":"jiachinzhao/gomail","owner":"jiachinzhao","description":"The best way to send emails in Go.","archived":false,"fork":true,"pushed_at":"2018-08-28T12:05:50.000Z","size":111,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-13T21:41:50.591Z","etag":null,"topics":["modify"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"go-gomail/gomail","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jiachinzhao.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-08-28T11:54:25.000Z","updated_at":"2018-08-28T12:05:51.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/jiachinzhao/gomail","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/jiachinzhao/gomail","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jiachinzhao%2Fgomail","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jiachinzhao%2Fgomail/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jiachinzhao%2Fgomail/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jiachinzhao%2Fgomail/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jiachinzhao","download_url":"https://codeload.github.com/jiachinzhao/gomail/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jiachinzhao%2Fgomail/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":27747207,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-12-15T02:00:09.782Z","response_time":96,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["modify"],"created_at":"2025-12-15T08:02:07.048Z","updated_at":"2025-12-15T08:04:26.456Z","avatar_url":"https://github.com/jiachinzhao.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# fork from go-gomail/gomail\n# modify to disable ssl and tls \n# Gomail\n[![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)\n\n## Introduction\n\nGomail is a simple and efficient package to send emails. It is well tested and\ndocumented.\n\nGomail can only send emails using an SMTP server. But the API is flexible and it\nis easy to implement other methods for sending emails using a local Postfix, an\nAPI, etc.\n\nIt is versioned using [gopkg.in](https://gopkg.in) so I promise\nthere will never be backward incompatible changes within each version.\n\nIt requires Go 1.2 or newer. With Go 1.5, no external dependencies are used.\n\n\n## Features\n\nGomail supports:\n- Attachments\n- Embedded images\n- HTML and text templates\n- Automatic encoding of special characters\n- SSL and TLS\n- Sending multiple emails with the same SMTP connection\n\n\n## Documentation\n\nhttps://godoc.org/gopkg.in/gomail.v2\n\n\n## Download\n\n    go get gopkg.in/gomail.v2\n\n\n## Examples\n\nSee the [examples in the documentation](https://godoc.org/gopkg.in/gomail.v2#example-package).\n\n\n## FAQ\n\n### x509: certificate signed by unknown authority\n\nIf you get this error it means the certificate used by the SMTP server is not\nconsidered valid by the client running Gomail. As a quick workaround you can\nbypass the verification of the server's certificate chain and host name by using\n`SetTLSConfig`:\n\n    package main\n\n    import (\n    \t\"crypto/tls\"\n\n    \t\"gopkg.in/gomail.v2\"\n    )\n\n    func main() {\n    \td := gomail.NewDialer(\"smtp.example.com\", 587, \"user\", \"123456\")\n    \td.TLSConfig = \u0026tls.Config{InsecureSkipVerify: true}\n\n        // Send emails using d.\n    }\n\nNote, however, that this is insecure and should not be used in production.\n\n\n## Contribute\n\nContributions are more than welcome! See [CONTRIBUTING.md](CONTRIBUTING.md) for\nmore info.\n\n\n## Change log\n\nSee [CHANGELOG.md](CHANGELOG.md).\n\n\n## License\n\n[MIT](LICENSE)\n\n\n## Contact\n\nYou can ask questions on the [Gomail\nthread](https://groups.google.com/d/topic/golang-nuts/jMxZHzvvEVg/discussion)\nin the Go mailing-list.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjiachinzhao%2Fgomail","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjiachinzhao%2Fgomail","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjiachinzhao%2Fgomail/lists"}