Skip to content

Commit 3650162

Browse files
committed
Updating README.md - minor corrections.
Signed-off-by:Ivan Tcholakov <[email protected]>
1 parent 7eed3d1 commit 3650162

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@ If PHPMailer was previously installed through Composer, uninstall it temporarily
4444
composer remove PHPMailer/PHPMailer
4545
```
4646

47-
Now install this library's package, it will install a correct version of PHPMailer:
47+
Now install this library's package, it will install a correct version of PHPMailer too:
4848

4949
```
5050
composer require ivantcholakov/codeigniter-phpmailer
5151
```
5252

53-
Create the file application/helpers/MY_email_helper.php with the following content:
53+
Create a file application/helpers/MY_email_helper.php with the following content:
5454

5555
```php
5656
<?php defined('BASEPATH') OR exit('No direct script access allowed.');
@@ -78,7 +78,7 @@ if (is_file(VENDORPATH.'ivantcholakov/codeigniter-phpmailer/helpers/MY_email_hel
7878
//}
7979
```
8080

81-
Create the file application/libraries/MY_Email.php with the following content:
81+
Create a file application/libraries/MY_Email.php with the following content:
8282

8383
```php
8484
<?php defined('BASEPATH') OR exit('No direct script access allowed.');
@@ -95,8 +95,8 @@ this package and PHPMailer would be done later easily:
9595
composer update
9696
```
9797

98-
Library's Configuration and Sending an E-mail (An Example)
99-
----------------------------------------------------------
98+
Configuration and Sending an E-mail (An Example)
99+
------------------------------------------------
100100

101101
Create if necessary or edit the file `application/config/email.php` which contains
102102
the default settings for the email engine. For a Gmail account, the setting might be something like this:

0 commit comments

Comments
 (0)