I'm using PHP to compose an html email and I'd like to add the following css statement to control the p margin spacing when the recipient looks at the email:
Right now, the vertical spacing is too much and this css statement reduces it nicely.
I'm not sure where to insert this css statement into my php script that constructs the html email?
Code:
<style type="text/css">p {margin:0; padding: 0;}</style>
I'm not sure where to insert this css statement into my php script that constructs the html email?
Comment