Skip to content

Instantly share code, notes, and snippets.

@anthonybudd
Last active June 18, 2018 10:16
Show Gist options
  • Save anthonybudd/5b028181334ddb90bbeec119e9349e89 to your computer and use it in GitHub Desktop.
Save anthonybudd/5b028181334ddb90bbeec119e9349e89 to your computer and use it in GitHub Desktop.
<?php
$email = WP_Mail::init()
->to('john.doe@gmail.com')
->subject('WP_Mail is great!')
->attach(ABSPATH . 'wp-content/uploads/2018/6/image.png')
->template(get_template_directory() .'/emails/demo.php', [
'name' => 'Anthony Budd',
'location' => 'London',
'skills' => [
'PHP',
'AWS',
'DevOps'
]
])
->send();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment