Fatal error: Call to undefined function wp_mail()

wp_mail() is defined in wp-includes/pluggable.php. This file is loaded after the plugins are loaded, but before the hook plugins_loaded has been fired.
So the answer is: wait.

add_action( 'plugins_loaded', 'renderHTML' );

On a side note: prefix your function names and your global variables.

Leave a Comment