Skip to content

Commit

Permalink
Update version to 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kiwi-commerce committed Jul 2, 2018
1 parent 561e97e commit f8520f1
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 26 deletions.
56 changes: 31 additions & 25 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,41 +1,39 @@
## Magento 2 - Enhanced SMTP by KiwiCommerce

### Overview
- Delivering messages is an important and mandatory part of running an e-Commerce business. Magento sends hundreds and thousands of emails on daily basis. Reliability of the email sending process should be as stable as possible. All emails must be delivered to recipients without delays.
# Magento 2 - Enhanced SMTP by [KiwiCommerce](https://kiwicommerce.co.uk/)
- Delivering messages is an essential and mandatory part of running an e-Commerce business. Magento sends hundreds and thousands of emails on a daily basis. Reliability of the email sending process should be as stable as possible. All emails must be delivered to recipients without delays.
- Magento-based store owners often struggle when it comes to sending transactional emails. The default email server of inherent hosting will be used to send unregistered emails from unauthorized senders. These emails that are sent by default Magento 2, will probably end up in the Spam box. As a result, these emails cannot approach your customers.
- This extension lets you use any third-party SMTP server for your store and configure all the necessary settings to avoid this problem. You can use any reliable SMTP server to give your emails higher chances to be delivered directly to your customers.
- This extension includes pre-configured settings for 25+ most popular SMTP providers.
- This extension provides you with a feature to track all sent emails by inserting email log.

### **Installation**

## Installation
1. Composer Installation
- Navigate to your Magento root folder<br />
`cd path_to_the_magento_root_directory`<br />
`cd path_to_the_magento_root_directory`
- Then run the following command<br />
`composer require kiwicommerce/module-enhanced-smtp`<br/>
- Make sure that composer finished the installation without errors.
`composer require kiwicommerce/module-enhanced-smtp`
- Make sure that composer finished the installation without errors

2. Command Line Installation
- Backup your web directory and database.
- Download Enhanced SMTP installation package from <a href="https://github.com/kiwicommerce/magento2-enhanced-smtp/releases/download/v1.0.1/kiwicommerce-enhanced-smtp-v101.zip">here</a>.
- Upload contents of the Enhanced SMTP Log installation package to your Magento root directory.
- Backup your web directory and database
- Download Enhanced SMTP installation package from <a href="https://github.com/kiwicommerce/magento2-enhanced-smtp/releases/download/v1.0.2/kiwicommerce-enhanced-smtp-v102.zip">here</a>
- Upload contents of the Enhanced SMTP Log installation package to your Magento root directory
- Navigate to your Magento root folder<br />
`cd path_to_the_magento_root_directory`<br />
- Then run the following command<br />
`php bin/magento module:enable KiwiCommerce_EnhancedSMTP`<br />
- Log out from the backend and log in again.
`php bin/magento module:enable KiwiCommerce_EnhancedSMTP`

- After install the extension, run the following command <br/>
`php bin/magento setup:upgrade`<br />
`php bin/magento setup:di:compile`<br />
`php bin/magento setup:static-content:deploy`<br />
`php bin/magento cache:flush`
- After install the extension, run the following command
```
php bin/magento setup:upgrade
php bin/magento setup:di:compile
php bin/magento setup:static-content:deploy
php bin/magento cache:flush
```
- Log out from the backend and log in again.

Find More details on <a href="https://kiwicommerce.co.uk/extensions/magento2-enhanced-smtp/" target="_blank">KiwiCommerce</a>
Find More details on [KiwiCommerce](https://kiwicommerce.co.uk/extensions/magento2-enhanced-smtp/)

## Where will it appear in the Admin Panel

- Go to **System > Enhanced SMTP by KiwiCommerce > Email Logs**. Here you can See the list of sent mail logs.

![Email Log](https://kiwicommerce.co.uk/docs/img/enhanced_smtp/email_log.png)
Expand All @@ -46,7 +44,6 @@ Find More details on <a href="https://kiwicommerce.co.uk/extensions/magento2-enh


## Configuration

### SMTP Configuration
Go to **System > Enhanced SMTP by KiwiCommerce > Configuration**. Open SMTP Configuration section

Expand All @@ -57,16 +54,25 @@ This section is placed right under SMTP Configure Section.

![Advanced Configuration](https://kiwicommerce.co.uk/docs/img/enhanced_smtp/advanced-configuration-section.png)

## Need Additional Features?
Feel free to get in touch with us at https://kiwicommerce.co.uk/get-in-touch/

## Other KiwiCommerce Extensions
* [Magento 2 Cron Scheduler](https://kiwicommerce.co.uk/extensions/magento2-cron-scheduler/)
* [Magento 2 Login As Customer](https://kiwicommerce.co.uk/extensions/magento2-login-as-customer/)
* [Magento 2 Inventory Log](https://kiwicommerce.co.uk/extensions/magento2-inventory-log/)
* [Magento 2 Admin Activity](https://kiwicommerce.co.uk/extensions/magento2-admin-activity/)

## Contribution
Well unfortunately there is no formal way to contribute, we would encourage you to feel free and contribute by:

- Creating bug reports, issues or feature requests on <a target="_blank" href="https://github.com/kiwicommerce/magento2-enhanced-smtp/issues">Github</a>
- Creating bug reports, issues or feature requests on [Github](https://github.com/kiwicommerce/magento2-enhanced-smtp/issues)
- Submitting pull requests for improvements.

We love answering questions or doubts simply ask us in issue section. We're looking forward to hearing from you!

- Follow us <a href="https://twitter.com/KiwiCommerce">@KiwiCommerce</a>
- Follow us [@KiwiCommerce](https://twitter.com/KiwiCommerce)
- <a href="mailto:[email protected]">Email Us</a>
- Have a look at our <a href="https://kiwicommerce.co.uk/docs/enhanced-smtp/">documentation</a>
- Have a look at our [documentation](https://kiwicommerce.co.uk/docs/enhanced-smtp/)


11 changes: 10 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "kiwicommerce/module-enhanced-smtp",
"description": "Magento 2 - Enhanced SMTP",
"type": "magento2-module",
"version": "1.0.1",
"version": "1.0.2",
"license": [
"OSL-3.0"
],
Expand All @@ -15,6 +15,15 @@
"role": "Leader"
}
],
"keywords": [
"magento 2",
"magento2",
"admin",
"backend",
"kiwicommerce",
"smtp",
"email"
],
"autoload": {
"files": [
"registration.php"
Expand Down

0 comments on commit f8520f1

Please sign in to comment.