Skip to content
Merged
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
11 changes: 10 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
# Changelog

## 2.0.1 - [November 20, 2025]
## 2.0.2 - [November 20, 2025]

- Fixed: Interest Form has appropriate "Reply-To" header

## 2.0.1

- Fixed: Linktree links used "stretched-link" pattern appropriately
- Fixed: Interest form sends emails

## 2.0.0

- New Theme!

Expand Down
2 changes: 1 addition & 1 deletion inc/theme/class-rest-router.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public function handle_interest_form( WP_REST_Request $request ): WP_REST_Respon
$last_name = $request->get_param( 'lastName' );
$email = $request->get_param( 'email' );
$interest = $request->get_param( 'interest' );
$client_success = wp_mail( $email, 'Interest Form Submission', "Hey {$first_name}, thanks for your interest in $interest! I'll be in touch soon." );
$client_success = wp_mail( $email, 'Interest Form Submission', "Hey {$first_name}, thanks for your interest in $interest! I'll be in touch soon.", array( 'Reply-To' => 'hello@macrosbysara.com' ) );
$admin_success = wp_mail( 'hello@macrosbysara.com', 'Interest Form Submission', "{$first_name} {$last_name} ({$email}) is interested in {$interest}." );
$success = $client_success && $admin_success;
$data = array(
Expand Down
2 changes: 1 addition & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Theme URI: https://github.com/macrosbysara/wordpress-theme
Author: KJ Roelke
Author URI: https://kjroelke.online
Description: A WordPress Theme built for Macros By Sara site
Version: 2.0.1
Version: 2.0.2
Requires at least: 6.7.0
Tested up to: 6.8.3
Requires PHP: 8.2
Expand Down