Magento 1 module that provides a full SMTP configuration.
- Ability to setup host, port, username/password and secure mode (TSL or SSL)
- Ability to send a test email from admin panel
- Translated in french
System > Configuration > System > Mail Sending Settings
- Send email via: SMTP mode (or native transport (PHP sendmail()))
- Host: SMTP server host
- Port: SMTP server port
- Username: login username
- Password: login password
- Secure mode: none, TLS or SSL
- Host: in.mailjet.com
- Port: 587
- Username: your API Mailjet Key
- Password: your Mailjet Secret Key
- SSL: TLS
- Host: smtp.mandrillapp.com
- Port: 587
- Username: your Mandrill Username
- Password: any valid Mandrill API key
- SSL: TLS
- Host: smtp.sendgrid.net
- Port: 587
- Username: your Sendgrid username
- Password: your Sendgrid password
- SSL: TLS
- Host: smtp.mailgun.org
- Port: 587
- Username: postmaster@yourdomainname.mailgun.org
- Password: your Mailgun domain password
- SSL: TLS
- Host: relay.cheetahsender.com
- Port: 25
- Username: ?
- Password: ?
- SSL: none
If you are a developer and want to hack CustomSmtp, you could use two new events:
customsmtp_email_before_send
: called before sending e-mailcustomsmtp_email_after_send
: called after sending e-mail
Each one uses those parameters:
- template (ID)
- subject
Released under the terms of the Open Software License 3.0.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.