johnsimpson
Programmer
Hi guys,
Bit confused here, Im fairly new to ASP and am having trouble adding a style to some text.
Basically im creating a forgotten password for a cms system, all is working great, sends the email and everything, but the HTML email is in plain text format and i want to add a style to make it cleaner text
the code im using to write to the email body is:
mailObj.Body = "You requested a password reminder. Your username is:- " & GETData("emailadd") & "Your password is:- " & GETData("pwd")
How can i add a "inline" style to this so it will display in verdana, size 10 in the email?
I had it working if i put it within the string text but it wont format the database element (i.e emailadd or pwd will be in plain text still)
thanks in advance
Bit confused here, Im fairly new to ASP and am having trouble adding a style to some text.
Basically im creating a forgotten password for a cms system, all is working great, sends the email and everything, but the HTML email is in plain text format and i want to add a style to make it cleaner text
the code im using to write to the email body is:
mailObj.Body = "You requested a password reminder. Your username is:- " & GETData("emailadd") & "Your password is:- " & GETData("pwd")
How can i add a "inline" style to this so it will display in verdana, size 10 in the email?
I had it working if i put it within the string text but it wont format the database element (i.e emailadd or pwd will be in plain text still)
thanks in advance