Mail

How to programmatically send an email in WordPress
How to programmatically send an email in WordPress

While developing another plugin for WP, I remembered a small issue I once ran into — programmatically sending email messages. There's really nothing complicated about it, but still, it might be useful to someone.

Usually, across the web, I’ve seen the following code:

wp_mail(
	'to_email@example.com',
	'Email Subject',
	'Email Body'
);

read more...