Skip to content

Instantly share code, notes, and snippets.

@anthonybudd
Created May 13, 2017 20:16
Show Gist options
  • Select an option

  • Save anthonybudd/0e8705fcf02d7892a55987b823312327 to your computer and use it in GitHub Desktop.

Select an option

Save anthonybudd/0e8705fcf02d7892a55987b823312327 to your computer and use it in GitHub Desktop.
<?php
$email = (new WP_Mail)
->to([
'john.doe@gmail.com',
'john.doe@me.com',
])
->cc('john.doe@yahoo.com')
->bcc([
'john.doe@github.com',
'john.doe@medium.com',
])
->template(get_template_directory() .'/emails/demo.html', [
'name' => 'John Doe',
'location' => 'London',
'link' => 'http://github.com/anthonybudd/WP_Mail'
])
->send();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment