How to send email in WordPress using wp_mail() function
You can use the wp_mail() function in your theme’s functions.php file or in a custom plugin. function send_custom_email() { $to = 'recipient@email.com'; // Email address…
Notifications