Skip to content

Commit 77ae1bf

Browse files
committed
documentation correction
1 parent 53b6bdc commit 77ae1bf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ django-template-mail ships with same backends as Django (https://docs.djangoproj
2323
Convert HTML into plain text
2424
----------------------------
2525

26-
By default, django-template-backend use a minimalist process to convert HTML into plain text. I suggest you to use **html2text** (https://github.com/aaronsw/html2text) ::
26+
By default, django-template-backend uses a minimalist process to convert HTML into plain text. I suggest you to use **html2text** (https://github.com/aaronsw/html2text) ::
2727

2828
EMAIL_HTML2TEXT = 'html2text.html2text'
2929

@@ -34,7 +34,7 @@ You can also write your own method and use it ::
3434
Sending emails
3535
==============
3636

37-
To send email with django-template-mail you simply should use the method described in the Django documentation (https://docs.djangoproject.com/en/dev/topics/email/) and replacing the **message** attribute as a tuple **('directory_template/template.html', {'key': 'value'}, context_instance)** ::
37+
To send email with django-template-mail you simply should use the method described in the Django documentation (https://docs.djangoproject.com/en/dev/topics/email/) and replace the **message** attribute as a tuple **('directory_template/template.html', {'key': 'value'}, context_instance)** ::
3838
3939
from django.core.mail import send_mail
4040
send_mail(
@@ -52,7 +52,7 @@ To send email with django-template-mail you simply should use the method describ
5252
fail_silently=False
5353
)
5454

55-
django-template-mail looked in django template directories/loaders ::
55+
django-template-mail looks into django template directories/loaders ::
5656

5757
<p>Hi {{full_name}},</p>
5858
<p>

0 commit comments

Comments
 (0)