Skip to content

Commit a63567c

Browse files
Update default email address for Learn Python site.
1 parent c1b2d7e commit a63567c

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

learnpython/forms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class BaseContactsForm(wtf.Form):
4444
name = wtf.TextField(_('Name'), validators=[Required()])
4545
email = wtf.TextField(_('Email'), validators=[Required(), Email()])
4646

47-
recipients = ['learnpython@igordavydenko.com']
47+
recipients = ['we@learnpython.in.ua']
4848
template = None
4949
title = None
5050

learnpython/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
FLATPAGES_ROOT = rel('data')
1818

1919
# Mail settings
20-
DEFAULT_MAIL_SENDER = 'Learn Python <learnpython@igordavydenko.com>'
20+
DEFAULT_MAIL_SENDER = 'Learn Python <we@learnpython.in.ua>'
2121
MAIL_FAIL_SILENTLY = False
2222
MAIL_SERVER = os.environ.get('MAILGUN_SMTP_SERVER', 'localhost')
2323
MAIL_PORT = os.environ.get('MAILGUN_SMTP_PORT', 25)

learnpython/templates/base.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<head>
44
<title>{{ _("Learn Python in Kyiv, Ukraine") }}</title>
55
<meta charset="utf-8">
6-
<meta name="google-site-verification" content="PogQHIar3WEtSoIEBmfed8exHxZhBD5_Qtf6HgOnjGM">
76

87
<link href="{{ url_for("static", filename="css/screen.css") }}" media="screen,projection,tv" rel="stylesheet" type="text/css">
98
{% block extra_head %}{% endblock %}

0 commit comments

Comments
 (0)