Last active
September 9, 2024 16:21
-
-
Save luizbills/655ae8ba45857c56fa8fb06e760af5ee to your computer and use it in GitHub Desktop.
Send emails using the WooCommerce template
This file contains hidden or 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
<?php | |
$email_subject = 'Subject'; | |
$email_to = '[email protected], [email protected]'; | |
$title = 'Custom email'; | |
$message = 'Hello world!'; | |
WC()->mailer()->send( | |
$email_to, | |
$email_subject, | |
WC()->mailer()->wrap_message( $title, $message ) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment