<?php
/**
* DO NOT USE IN PRODUCTION
*/
function link_urls( $str ) {
$linked = '';
$words = explode( ' ', $str );
foreach ( $words as &$word ) {
if ( false === strpos( $word, '://' ) ) {
continue;
}
$last_char = mb_substr( $word, -1 );
preg_match( '/[^a-zA-Z0-9\/]/', $last_char, $match );
$extra = ( $match ) ? $last_char : '';
$word = sprintf(
'<a href="%1$s">%1$s</a>%2$s',
( '' === $extra ) ? $word : mb_substr( $word, 0, -1 ),
$extra
);
}
return implode( ' ', $words );
}
// Not this, keep scrolling.
$body = <<<EOD
Hello,
This is the body of the email.
Howdy! Some plugins and themes have automatically updated to their latest versions on your site at http://example.com. No further action is needed on your part.
Howdy! Some plugins and themes have automatically updated to their latest versions on your site at http://example.com/. No further action is needed on your part.
Howdy! Some plugins and themes have automatically updated to their latest versions on your site at http://example.com/index.php. No further action is needed on your part.
Howdy! Some plugins and themes have automatically updated to their latest versions on your site at http://example.com/index.php?why=whoknows. No further action is needed on your part.
Howdy! Some plugins and themes have automatically updated to their latest versions on your site at http://example.com:80. No further action is needed on your part.
Howdy! Some plugins and themes have automatically updated to their latest versions on your site at http://example.com/#welcome. No further action is needed on your part.
Howdy! Some plugins and themes have automatically updated to their latest versions on your site at http://example.com/! No further action is needed on your part.
Howdy! Some plugins and themes have automatically updated to their latest versions on your site at http://example.com/- No further action is needed on your part.
Howdy! Some plugins and themes have automatically updated to their latest versions on your site at http://example.com/? No further action is needed on your part.
Howdy! Some plugins and themes have automatically updated to their latest versions on your site at http://example.com/: No further action is needed on your part.
Howdy! Some plugins and themes have automatically updated to their latest versions on your site at http://example.com/; No further action is needed on your part.
Regards,
Email Service
EOD;
echo link_urls( $body );
Hello,
This is the body of the email.
Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com">http://example.com</a>. No further action is needed on your part.
Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com/">http://example.com/</a>. No further action is needed on your part.
Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com/index.php">http://example.com/index.php</a>. No further action is needed on your part.
Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com/index.php?why=whoknows">http://example.com/index.php?why=whoknows</a>. No further action is needed on your part.
Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com:80">http://example.com:80</a>. No further action is needed on your part.
Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com/#welcome">http://example.com/#welcome</a>. No further action is needed on your part.
Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com/">http://example.com/</a>! No further action is needed on your part.
Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com/">http://example.com/</a>- No further action is needed on your part.
Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com/">http://example.com/</a>? No further action is needed on your part.
Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com/">http://example.com/</a>: No further action is needed on your part.
Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com/">http://example.com/</a>; No further action is needed on your part.
Regards,
Email Service
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0
Hello,
This is the body of the email.
Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com">http://example.com</a>. No further action is needed on your part.
Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com/">http://example.com/</a>. No further action is needed on your part.
Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com/index.php">http://example.com/index.php</a>. No further action is needed on your part.
Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com/index.php?why=whoknows">http://example.com/index.php?why=whoknows</a>. No further action is needed on your part.
Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com:80">http://example.com:80</a>. No further action is needed on your part.
Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com/#welcome">http://example.com/#welcome</a>. No further action is needed on your part.
Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com/">http://example.com/</a>! No further action is needed on your part.
Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com/">http://example.com/</a>- No further action is needed on your part.
Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com/">http://example.com/</a>? No further action is needed on your part.
Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com/">http://example.com/</a>: No further action is needed on your part.
Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com/">http://example.com/</a>; No further action is needed on your part.
Regards,
Email Service