Skip to content

Instantly share code, notes, and snippets.

@luizbills
Last active September 9, 2024 16:21
Show Gist options
  • Save luizbills/655ae8ba45857c56fa8fb06e760af5ee to your computer and use it in GitHub Desktop.
Save luizbills/655ae8ba45857c56fa8fb06e760af5ee to your computer and use it in GitHub Desktop.
Send emails using the WooCommerce template
<?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