Plugin info

Total downloads: 1,334
Active installs: 0
Total reviews: 1
Average rating: 5
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 3
Last updated: 9/16/2020 (1932 days ago)
Added to WordPress: 5/5/2014 (11 years old)
Minimum WordPress version: 3.8
Tested up to WordPress version: 5.5.17
Minimum PHP version: 5.6

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 1932 days ago • 1 reviews

22/100

Is TIVWP Email abandoned?

Possibly abandoned (last update 1932 days ago).

Compatibility

Requires WordPress: 3.8
Tested up to: 5.5.17
Requires PHP: 5.6

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

TIVWP-DEMIA Check prerequisites
Rating 0.0/5 (0 reviews)Active installs 0

Description

TIVWP Email is a plugin for WordPress developers. Its main features are:

  • Configure SMTP Email. Particularly useful on Windows machines.
  • MAIL_TO overwriting. Force all email to be sent to one address. Useful on staging environment when you do not want email to be sent to the real users.

The settings are stored in a configuration file (wp-config.php or similar), so they are not accidentally copied from development to production.

Installation

You can install this plugin directly from your WordPress dashboard:

  1. Go to the Plugins menu and click Add New.
  2. Search for TIVWP Email.
  3. Click Install Now next to the TIVWP Email plugin.
  4. Activate the plugin.

Alternatively, see the guide to Manually Installing Plugins.

Frequently Asked Questions

Testing:

To check the configuration settings, and to send a test email, go to Tools->TIVWP Email in admin.

Configuration Example:

$GLOBALS[‘TIVWP’][‘EMAIL’] = array(
// Using GMail SMTP
‘SMTP_ENABLED’ => true,
‘SMTP_HOST’ => ‘smtp.gmail.com’,
‘SMTP_PORT’ => ‘587’,
‘SMTP_SECURE’ => ‘tls’,
‘SMTP_AUTH’ => true,
‘SMTP_USER’ => ‘[email protected]’,
‘SMTP_PASSWORD’ => ‘*****’,
// Forcing all email sent to …
// (better if not the same as the SMTP_USER)
‘MAIL_TO’ => ‘[email protected]’,
‘SMTP_OPTIONS’ => array(
‘ssl’ => array(
‘verify_peer’ => false,
‘verify_peer_name’ => false,
‘allow_self_signed’ => true,
)
),
);

Review feed

Gregory Karpinsky (@tivnet)
9/3/2016

Using this plugin for 2 years with no problems

The main reason to write this plugin was to have different email configurations on development and production machines without going each time to the options panel. So, the settings are in WP config instead. Try it, and you'll use it in each project! P.S. Check out my other plugins, starting from https://wordpress.org/plugins/wpglobus/

Screenshots

  1. Admin interface to test email settings

    Admin interface to test email settings

Changelog

1.0.4

  • Fix: PHPMailer namespace error.
  • Code cleanup using the latest PHP inspections and phpcs.

1.0.3

  • Added configuration parameter SMTP_OPTIONS.
  • Code cleanup using the latest PHP inspections and phpcs.
  • Checked with WordPress 4.7.3, the latest versions of WooCommerce and WPGlobus.

1.0.2

  • Code cleanup using the latest PHP inspections and phpcs.
  • Checked with WordPress 4.6.

1.0.1

  • Fix: Start on ‘plugins_loaded’ instead of ‘wp_loaded’. (Contact Form 7, for example, sends emails on ‘init’)

1.0.0

  • Initial release