From dac23caf2b8290cc09f569a08e7053563f4a3af6 Mon Sep 17 00:00:00 2001 From: Ilnur Mangushev Date: Thu, 10 Jan 2019 16:03:42 +0300 Subject: [PATCH] readme: add missing "go" marker --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b3be9e1..3cddec8 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ If you get this error it means the certificate used by the SMTP server is not considered valid by the client running Gomail. As a quick workaround you can bypass the verification of the server's certificate chain and host name by using `SetTLSConfig`: - +```go package main import ( @@ -65,7 +65,7 @@ bypass the verification of the server's certificate chain and host name by using // Send emails using d. } - +``` Note, however, that this is insecure and should not be used in production.