اممم نه كد خاصي نيست ! من يه متغير رو از يه صفحه ديگه ميگيرم و با تابع ميل ميفرستم ! تو اون صفحه از يه اديتور استفاده كردم و ازش كد اچ تي ام ال ميگيرم چندتا تك اضافه ميكنم و ميفرستم در هر حال اينم كد (من قبلاَ توي طراحي قالب هاي نوك هم با اين مشكل مواجه بودم !

)
[code:1]<?php
/* subject */
$subject = $sub;
/* message */
$message = '
<html>
<head>
<title>new mail</title>
</head>
<body>'.
$text1
.'<P><FONT face=Tahoma size=5>
<HR id=null>
</FONT></P><FONT face=Tahoma size=5>Sefidary<FONT color=#4a4a4a size=4>[dot]</FONT><FONT size=5>Com</FONT></FONT></body>
</html>
';
/* To send HTML mail, you can set the Content-type header. */
$headers = "MIME-Version: 1.0rn";
$headers .= "Content-type: text/html; charset=utf-8rn";
/* additional headers */
$headers .= "From: $fromrn";
$headers .= "Cc: $ccrn";
$headers .= "Bcc: $bccrn";
/* and now mail it */
mail($tomail, $subject, $message, $headers);
header("location:nextpage.htm");
?>[/code:1]