** 目前我采用的空间是PHP+MYSQL类型的,有关于PHP方面的编程问题,欢迎一起讨论 我写了一段PHP邮件例程也在下面,供参考: 例程如下: <? if($send){ $hearer="From:$from\nReply-To:$from\nX-Mailer: PHP/".phpversion()."\nContent-Type:text/html"; $result=mail($to,$subject,$body,$hearer); if($result) echo "邮件已成功发送"; } ?> <html> <body> <table width="100%" border="0" cellpadding="1" cellspacing="1" bgcolor="#6699FF"> <form method="post"> <tr bgcolor="#E7E7CB"> <td width="20%" height="26">发件人:</td> <td width="80%"><input name="from" type="text"></td> </tr> <tr bgcolor="#E7E7CB"> <td height="25">收件人:</td> <td><input name="to" type="text"></td> </tr> <tr bgcolor="#E7E7CB"> <td height="24">邮件标题:</td> <td><input name="subject" type="text" size="50"></td> </tr> <tr bgcolor="#E7E7CB"> <td height="27">邮件内容:</td> <td><textarea name="body" cols="60" rows="10"></textarea></td> </tr> <tr bgcolor="#E7E7CB"> <td height="28"> </td> <td> <input type="hidden" value="1" name="send"> <input type="submit" name="Submit" value="提交"> <input type="reset" name="Submit2" value="重置"></td> </tr> </form> </table> </body> </html> (责任编辑:龙舞天翔) |