Skip to content

Instantly share code, notes, and snippets.

@Zodiac1978
Created November 13, 2024 16:30
Show Gist options
  • Save Zodiac1978/0ee33afee3f96c7b993738f2034a83eb to your computer and use it in GitHub Desktop.
Save Zodiac1978/0ee33afee3f96c7b993738f2034a83eb to your computer and use it in GitHub Desktop.
Remove subdomain from the From address to allow mails on IONOS hosting. (See: https://torstenlandsiedel.de/2024/02/26/mailprobleme-bei-ionos-mit-subdomains/)
<?php
/**
* Plugin Name: Fix IONOS Mail
* Description: Remove subdomain from the From address to allow mails on IONOS hosting.
* Plugin URI: https://torstenlandsiedel.de
* Version: 1.0.0
* Author: Torsten Landsiedel
* Author URI: https://torstenlandsiedel.de
* Licence: GPL 2
* License URI: http://opensource.org/licenses/GPL-2.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
// Change the default "from email" by removing any subdomain
function wp_email_set_from_email( $from_email ) {
// Use regex to match and extract the primary domain
if (preg_match('/^(.+)@(?:[^@.]+\.)*([^@.]+\.[^@.]+)$/', $from_email, $matches)) {
// Construct the email without the subdomain
return $matches[1] . '@' . $matches[2];
}
// Return the original email if it doesn't match the pattern
return $from_email;
}
add_filter( 'wp_mail_from', 'wp_email_set_from_email' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment