From c5b21c2e8e13bd528ba50bdc469ad8ab1baf4292 Mon Sep 17 00:00:00 2001
From: agus makmun <summon.agus@gmail.com>
Date: Tue, 19 Apr 2016 02:33:24 +0700
Subject: [PATCH] Delete 2016-04-19-email-backEnd-with-smtp-gmail.md

---
 ...016-04-19-email-backEnd-with-smtp-gmail.md | 23 -------------------
 1 file changed, 23 deletions(-)
 delete mode 100644 _posts/2016-04-19-email-backEnd-with-smtp-gmail.md

diff --git a/_posts/2016-04-19-email-backEnd-with-smtp-gmail.md b/_posts/2016-04-19-email-backEnd-with-smtp-gmail.md
deleted file mode 100644
index 128131c..0000000
--- a/_posts/2016-04-19-email-backEnd-with-smtp-gmail.md
+++ /dev/null
@@ -1,23 +0,0 @@
----
-layout: post
-title:  "Email BackEnd with SMTP Gmail"
-date:   2016-04-19 02:28:15
-categories: django
----
-
-Add this configurations in your `settings.py`
-
-This configurations is if you work with `smtp.gmail.com`, other smtp is similiar with configurations.
-
-* Unlock Captha: https://accounts.google.com/DisplayUnlockCaptcha
-* Change to active: https://www.google.com/settings/security/lesssecureapps
-
-```
-EMAIL_HOST          = 'smtp.gmail.com'
-EMAIL_PORT          = 587
-EMAIL_HOST_USER     = 'your_gmail@gmail.com'
-EMAIL_HOST_PASSWORD = 'your_password'
-EMAIL_USE_TLS       = True
-DEFAULT_FROM_EMAIL  = EMAIL_HOST_USER
-EMAIL_BACKEND       = 'django.core.mail.backends.smtp.EmailBackend'
-```
\ No newline at end of file
-- 
GitLab