I´m trying to send an email in php using my web fonts on the body of the email text.
I have this link for my web fonts.
<link rel="stylesheet" type="text/css" href="http://localhost/projet/tpl/fonts/fonts.css" />
Then I have a message that I want to send using my fonts in the text:
$msg = '<h3 style="font-family: \'bariol_boldbold\'; color:#099;">Hello '.$assoc['name'].', </h3>
<p style="font:bold 12px Arial, Helvetica, sans-serif; color:#666;">How are ayou?</p>';
My bariol_boldbold is a webfont that I have and its not working,but with Arial, Helvetica, sans-serif its working.
To send emails with web fonts can not be this way \'bariol_boldbold\'
?
I