Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

change WooCommerce email font family

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.

like image 878
user6446005 Avatar asked Nov 18 '25 10:11

user6446005


1 Answers

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>';
}
like image 172
phpdev Avatar answered Nov 21 '25 04:11

phpdev