[PHP开发] phpmailer问题 错误原因: Could not instantiate mail function
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 |
Send via the PHP mail() function function
mail_send( $header , $body ) { // Create mail recipient list $to
= $this ->to[0][0]; // no extra comma for ( $x
= 1; $x < count ( $this ->to); $x ++) $to
.= sprintf( ",%s" , $this ->to[ $x ][0]); for ( $x
= 0; $x < count ( $this ->cc); $x ++) $to
.= sprintf( ",%s" , $this ->cc[ $x ][0]); for ( $x
= 0; $x < count ( $this ->bcc); $x ++) $to
.= sprintf( ",%s" , $this ->bcc[ $x ][0]); if (!mail( $to , $this ->Subject, $body , $header )) $this ->error_handler( "Could not instantiate mail()" ); }} 这就说明了是mail 函数调用不成功造成的,也就是你设置的问题,导致没有使用SMTP来发信,而还是使用内置的mail函数,而你的服务器不支持mail函数。 |
could not instantiate mail function 不能实现mail方法
mail的工作原理。mail函数可以与php.ini 指定的smtp服务器产生交互。并发送
[PHP开发] phpmailer问题 错误原因: Could not instantiate mail function,古老的榕树,5-wow.com
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。