Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.1] - 2026-08-06

### Fixed
- Fixed `wp_mail` function to preserve `Reply-To`, `Cc`, `Bcc` and custom headers.

## [1.0.0] - 2024

### Added
Expand Down Expand Up @@ -59,4 +64,4 @@ None reported yet.
For issues, feature requests, or questions:
- [GitHub Issues](https://github.com/resend/resend-wordpress/issues)
- [Resend Support](https://resend.com/help)
- [Documentation](https://resend.com/docs)
- [Documentation](https://resend.com/docs)
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: email, transactional email, smtp, mail, resend
Tested up to: 7.0
Requires at least: 5.9
Requires PHP: 7.2
Stable tag: 1.0.0
Stable tag: 1.0.1
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -119,6 +119,9 @@ Yes! You can set a custom sender email and name in the plugin settings page.

== Changelog ==

= 1.0.1 =
* Fixed `wp_mail` function to preserve `Reply-To`, `Cc`, `Bcc` and custom headers

= 1.0.0 =
* Initial release
* Basic email sending via Resend API
Expand Down
4 changes: 2 additions & 2 deletions resend.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Plugin URI: https://resend.com
* Description: Send WordPress emails through the Resend API. Connect your Resend account, configure your sender, and route transactional emails through Resend's infrastructure.
* Requires at least: 5.9
* Version: 1.0.0
* Version: 1.0.1
* Requires PHP: 7.2
* Author: Resend
* Author URI: https://github.com/resend/resend-wordpress/graphs/contributors
Expand All @@ -27,7 +27,7 @@
exit;
}

define( 'RESEND_VERSION', '1.0.0' );
define( 'RESEND_VERSION', '1.0.1' );
define( 'RESEND__PLUGIN_DIR', plugin_dir_path( __FILE__ ) );

if ( function_exists( 'wp_mail' ) ) {
Expand Down