php发邮件问题
答案:2 悬赏:0 手机版
解决时间 2021-05-17 00:31
- 提问者网友:蓝莓格格巫
- 2021-05-16 18:29
我需要的是一个实例
最佳答案
- 五星知识达人网友:怙棘
- 2021-05-16 19:53
<?php
$to = 'nobody@example.com';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: webmaster@example.com' . "\r\n" .
'Reply-To: webmaster@example.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
?>
$to = 'nobody@example.com';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: webmaster@example.com' . "\r\n" .
'Reply-To: webmaster@example.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
?>
全部回答
- 1楼网友:末日狂欢
- 2021-05-16 20:53
你服务器支持mail函数不?
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯