Greetings fellow kirupians, i have a question.
I have a price quote system i’ve been working on. Basically the user fills out a form asking a bunch of questions. On submit, the data then goes to a php page which inserts the data into a mySQL database. The php page also sends me an email telling me a price quote has been submitted.
**
question:
**
When I recieve the email, ideally i’d like to have a hyperlink in the email which directs me to an administration page, that displays the price quotes.
// message to check new entry
$message = "<a href='http://digitalosophy.com'>You have a new price quote submission.</a>";
Unfortunatly when I get the email the hyperlink is not there, I simply get the HTML. Of course my email is set to HTML email. I read it has to do something with the MIME types, but i cannot find a direct answer.