博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PHPmailer关于Extension missing: openssl报错的解决
阅读量:5069 次
发布时间:2019-06-12

本文共 1821 字,大约阅读时间需要 6 分钟。

   最近在写一个网页的时候,需要用到PHPmailer来发送邮件,按照官网上给出的demo写出一个例子,却报错Extension missing: openssl

   最后发现需要修改php.ini中的配置:

   将其中的

      extension=php_openssl.dll

   打开即可。

   

   demo代码添加如下:

1 
SMTPDebug = 3; // Enable verbose debug output 7 8 $mail->isSMTP(); // Set mailer to use SMTP 9 $mail->Host = 'smtp1.example.com;smtp2.example.com'; // Specify main and backup SMTP servers10 $mail->SMTPAuth = true; // Enable SMTP authentication11 $mail->Username = 'user@example.com'; // SMTP username12 $mail->Password = 'secret'; // SMTP password13 $mail->SMTPSecure = 'tls'; // Enable TLS encryption, `ssl` also accepted14 $mail->Port = 587; // TCP port to connect to15 16 $mail->setFrom('from@example.com', 'Mailer');17 $mail->addAddress('joe@example.net', 'Joe User'); // Add a recipient18 $mail->addAddress('ellen@example.com'); // Name is optional19 $mail->addReplyTo('info@example.com', 'Information');20 $mail->addCC('cc@example.com');21 $mail->addBCC('bcc@example.com');22 23 $mail->addAttachment('/var/tmp/file.tar.gz'); // Add attachments24 $mail->addAttachment('/tmp/image.jpg', 'new.jpg'); // Optional name25 $mail->isHTML(true); // Set email format to HTML26 27 $mail->Subject = 'Here is the subject';28 $mail->Body = 'This is the HTML message body in bold!';29 $mail->AltBody = 'This is the body in plain text for non-HTML mail clients';30 31 if(!$mail->send()) {32 echo 'Message could not be sent.';33 echo 'Mailer Error: ' . $mail->ErrorInfo;34 } else {35 echo 'Message has been sent';36 }

 

   

转载于:https://www.cnblogs.com/duolk/p/5917020.html

你可能感兴趣的文章
WIN下修改host文件并立即生效
查看>>
十个免费的 Web 压力测试工具
查看>>
ckeditor 粘贴后去除html标签
查看>>
面试题
查看>>
EOS生产区块:解析插件producer_plugin
查看>>
数据库框架的log4j日志配置
查看>>
lintcode-easy-Remove Element
查看>>
mysql重置密码
查看>>
jQuery轮 播的封装
查看>>
一天一道算法题--5.30---递归
查看>>
switchcase的用法
查看>>
React.js 小书 Lesson15 - 实战分析:评论功能(二)
查看>>
Java基础03 构造器与方法重载
查看>>
kafka的使用
查看>>
Linux0.11内核--加载可执行二进制文件之1.copy_strings
查看>>
编写Nginx启停服务脚本
查看>>
这些老外的开源技术养活了很多国产软件
查看>>
看图软件推荐
查看>>
【IdentityServer4文档】- 欢迎来到 IdentityServer4
查看>>
安全测试的一些漏洞和测试方法
查看>>