I want to change the font family for the woocommerce email sent after order is placed. I have tried adding the font in css but it is not working.
Any suggestions would be appreciated.
Try with the below code - Add a CSS font file with the below code and use it in the mail using woocommerce action.
add_action('woocommerce_email_header', 'add_css_to_email');
function add_css_to_email() {
echo '
<style type="text/css">
/* Put CSS here */
@font-face {
font-family: Myfont;
src: url(font_family_file.woff);
}
div {
font-family: Myfont;
}
</style>';
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With