在php中使用邮件功能发送邮件

时间:2017-08-31 11:38:53

标签: php email

我必须通过网站发送邮件。我正在使用mail()函数。问题是没有发送邮件,我无法识别问题。请帮帮我。

这是我正在使用的代码:

<?php

   $to="admin@domain.com";
   $headers="FROM:me@domain.com"."\r\n"."BCC:myboss@domain.com";
   $subject="Customer Details.";
   $message="Following are the details of the customer - NAME :".$name." CONTACT NO :".$no." ORGANIZATION & DESIGNATION: ".$od."" ;
   //echo $message;

   mail($to, $subject, $message, $header);
?>

这里的$变量来自一个表单。他们一切都很好。

0 个答案:

没有答案