|
|
|||||||||
|
|||||||||
|
|||||||||
| |
|||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
I have created an html formatted email using asp. How do you go about specifying the default font and size for the email? Is there a way to include a style sheet? I'm sure the answer's probably pretty obvious! Thanks in advance.
|
|
#2
|
|||
|
|||
|
problem with html email is that hotmail and other web based mail systems the head section of the email strips, as well as all javascript tags for security reasons.
It means that your html email starts at the body tag. I think you are able to define a style sheet within the body section of your html: Code:
<body>
<style>
p {font-family: Arial;
font-size: 12pt;
}
etc...
</style>
rest of html
</body>
-Rogier
__________________
- Rogier Doekes |
![]() |
| Viewing: Dev Articles Community Forums > Programming > ASP Development > HTML Formatted Email - Specifying Default Font Size |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|