Created
September 25, 2013 14:26
-
-
Save jarednova/6700415 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1>Congratulations to {{name}}</h1> | |
<p>You're really great so we're giving you a prize of {{prize}}</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
my_ajax_mail_function(){ | |
$data['name'] = 'My User Name'; | |
$data['prize'] = 'Vacation to Paris'; | |
$message = Timber::render('message.twig, $data, false); | |
wp_mail("[email protected]", "You win a Prize!", $message); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment