Hello ,
I'm using PHP to send html emails. I've tried to import css files inside the email, and it works fine.
<link href="http://www.mywebsite.com/css/mail_styles.css"
type="text/css" rel="stylesheet" />
But i want the email to look stylish with some JQuery tricks, so i tried to import the JQuery library inside the email to add some scripts, but even gmail couldn't read the library.
<script type="text/javascript"
src="http://www.mywebsite.com/scripts/jquery.js"></script>
So is there a way to import JavaScript libraries inside html emails ?
Thanks ...