Skip to content

Commit

Permalink
Bumped version to 0.1.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
nathan-osman committed Nov 28, 2015
1 parent 18d4195 commit bf4cb67
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion hectane.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Plugin Name: Hectane
Plugin URI: https://github.com/hectane/hectane
Description: Deliver all WordPress emails via Hectane.
Version: 0.1.2
Version: 0.1.3
Author: Nathan Osman
Author URI: https://quickmediasolutions.com
License: MIT
Expand All @@ -22,6 +22,9 @@
// Only override the wp_mail() function if it doesn't exist
if (!function_exists('wp_mail')) {

/**
* Determine if a message contains HTML.
*/
function hectane_isMessageHtml($message) {
$tStart = strpos($message, '<');
$tEnd = strpos($message, '>');
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: george_edison
Tags: mail, email
Requires at least: 3.0.1
Tested up to: 4.3.1
Stable tag: 0.1.2
Stable tag: 0.1.3
License: MIT
License URI: https://opensource.org/licenses/MIT

Expand All @@ -21,6 +21,9 @@ This plugin provides an extremely easy way to route WordPress emails through [He

== Changelog ==

= 0.1.3 =
* Plugin now auto-detects HTML

= 0.1.2 =
* Fixed bug preventing TLS from working
* Added option for ignoring TLS errors
Expand Down

0 comments on commit bf4cb67

Please sign in to comment.