[COLOR=Red]*how about bold?
this is what i have on my php*[/COLOR]
<?php
$sendTo = "lolo@lolomedia.com";
$subject = "Optional Survey I";
$headers = "From: <" . $_POST["email"] .">
";
$headers .= "Reply-To: " . $_POST["email"] . "
";
$headers .= "Return-path: " . $_POST["email"];
$message = "Prior to completing this orientation, would you have considered some of your e-Mail be corporate records?: $gender
";
$message .= "
";
$message .= "Comments: " . $_POST["Smessage"];
mail($sendTo, $subject, $message, $headers);
?>
[COLOR=Red]and this is what i get on my email body: [/COLOR]
Prior to completing this orientation, would you have considered some of your e-Mail be corporate records?: Yes
Comments: I think this was very interesting.
[COLOR=Red]but i would like to get this: [/COLOR]
** Prior to completing this orientation, would you have considered some of your e-Mail be corporate records?:** Yes
** Comments:** I think this was very interesting.
hl1
April 12, 2006, 6:53pm
2
<?php
$sendTo = "lolo@lolomedia.com";
$subject = "Optional Survey I";
$headers = "From: <" . $_POST["email"] .">
";
$headers .= "Reply-To: " . $_POST["email"] . "
";
$headers .= "Return-path: " . $_POST["email"] . "
";
$headers .= "Content-type: text/html";
$message = "<b>Prior to completing this orientation, would you have considered some of your e-Mail be corporate records?:</b> $gender
";
$message .= "
";
$message .= "<b>Comments:</b> " . $_POST["Smessage"];
mail($sendTo, $subject, $message, $headers);
?>
thank you harish
I got something like this:
<b>Prior to completing this orientation, would you have considered some of your
e-Mail be corporate records?:</b> Yes
<b>Comments:</b> well, this is working great now!
Maybe, my email was not html enabled view but I made sure it was enable and
I still got the same <b> on my body of the email.
:pa:
any advice?
if anyone knows how to get my result on outlook with rich text please help me out.
i’m sending info from flash to php then to my inbox… a contact form
but i want some of that info to be bold.
example:
message : “user’s input”
please help out… thanks!
Ankou
April 12, 2006, 8:51pm
5
I think you need to send the email with the MIME type of text/enriched. I’ve never tried that though, so I’m not sure how well it will work, or even how to make something appear as simple as bold text. :puzzle: