phpmailer 相关问题

PHPMailer是一个PHP电子邮件传输类。 PHPMailer旨在与其他服务器直接通信(与PHP的本机mail()函数不同)。与[php]标签一起使用

通过 gmail 的 PHPMailer 循环发送在中间失败

我正在使用 PHPMailer 从 Gmail 地址发送电子邮件。我通过客户数据库循环发送电子邮件,在我的测试中发送的总数约为 200。在我的测试中,它发送了大约 80

回答 0 投票 0

如何在 Docker 容器中从 WordPress(联系表格)发送电子邮件?

我对 Wordpress 图片有一点疑问,非常感谢您的帮助。 我有现有的数据库,我用转储导入它。 我的 Mysql Dockerfile 清单如下: 来自 mariadb:10.1.20 复制转储...

回答 2 投票 0

致命错误:未捕获 PHPMailer\PHPMailer\Exception:SMTP 错误:无法连接到 SMTP 主机。连接服务器失败

我安装了 PHPMailer 来从我的 PHP 应用程序发送电子邮件。 我正在使用 Mailtrap 伪造服务器。 但是,当我提交表单以发送电子邮件时,出现以下错误: 致命错误:未捕获

回答 0 投票 0

尝试使用 PHP 邮件程序向 PHP 中的多个收件人发送电子邮件

我正在尝试在我的网站上实现发送电子邮件功能。我希望能够一次将电子邮件发送到多个地址。我设法在我的发送电子邮件表单上创建了一个多选字段...

回答 0 投票 0

由于未定义常量,在 smtpSend 中手动安装 PHPMailer 失败

我正在尝试在 PHP 8.0.8 上设置 PHPMailer 6.8.0,使用 SMTP 作为我的发送方法。 尝试发送消息时,出现致命错误 未定义常量“PHPMailer\PHPMailer\PHPMaile...

回答 0 投票 0

如何修复 php 邮件证书

我正在尝试使用 PHPMailer 类从我的 godaddy VPS 发送电子邮件,但出现以下错误。 请注意 VPS 与不同的服务提供商和 smtp 电子邮件服务与不同的

回答 0 投票 0

phpMailer 将带有外部 URL 的图像转换为附件和 CID

我正在使用 phpMailer 发送使用 tinymce 编辑器编写并保存在 MySQL 中的电子邮件。 我遇到的问题是当图像通过 tinymce 上传时,它返回一个外部 URL 和 ...

回答 1 投票 0

使用电子邮件正文模板中的超链接时,电子邮件会发送到垃圾邮件文件夹

我正在使用 php mailer 发送电子邮件我尝试了很多代码在谷歌上搜索并按照定义进行了相同但我的电子邮件仍然发送到垃圾文件夹但是当我从我的电子邮件 html 代码中删除它是 c ...

回答 1 投票 0

在电子邮件模板 TWIG 中获取完整的 url

我正在使用 Symfony 6 开发一个应用程序,我安装了重置密码包。除了我收到要求更改密码的电子邮件外,一切都运行良好。 TWIG 中的重定向 v...

回答 1 投票 0

PHP Mailer 在电子邮件中发送 html 代码尝试了很多但还是一样

我正在使用 php mailer 发送电子邮件我尝试了很多代码确实在谷歌上搜索并按照定义做了同样的事情但是我仍然在我的电子邮件中收到 html 代码这真的很令人沮丧现在我确定我做......

回答 0 投票 0

我的 php 邮件功能不工作。但没有任何错误信息

<?php return [ /* |-------------------------------------------------------------------------- | Default Mailer |-------------------------------------------------------------------------- | | This option controls the default mailer that is used to send any email | messages sent by your application. Alternative mailers may be setup | and used as needed; however, this mailer will be used by default. | */ 'default' => env('MAIL_MAILER', 'smtp'), /* |-------------------------------------------------------------------------- | Mailer Configurations |-------------------------------------------------------------------------- | | Here you may configure all of the mailers used by your application plus | their respective settings. Several examples have been configured for | you and you are free to add your own as your application requires. | | Laravel supports a variety of mail "transport" drivers to be used while | sending an e-mail. You will specify which one you are using for your | mailers below. You are free to add additional mailers as required. | | Supported: "smtp", "sendmail", "mailgun", "ses", | "postmark", "log", "array" | */ 'mailers' => [ 'smtp' => [ 'transport' => 'smtp', 'host' => env('MAIL_HOST', 'smtp.mailgun.org'), 'port' => env('MAIL_PORT', 587), 'encryption' => env('MAIL_ENCRYPTION', 'tls'), 'username' => env('MAIL_USERNAME'), 'password' => env('MAIL_PASSWORD'), 'timeout' => null, 'auth_mode' => null, ], 'ses' => [ 'transport' => 'ses', ], 'mailgun' => [ 'transport' => 'mailgun', ], 'postmark' => [ 'transport' => 'postmark', ], 'sendmail' => [ 'transport' => 'sendmail', 'path' => '/usr/sbin/sendmail -bs', ], 'log' => [ 'transport' => 'log', 'channel' => env('MAIL_LOG_CHANNEL'), ], 'array' => [ 'transport' => 'array', ], ], /* |-------------------------------------------------------------------------- | Global "From" Address |-------------------------------------------------------------------------- | | You may wish for all e-mails sent by your application to be sent from | the same address. Here, you may specify a name and address that is | used globally for all e-mails that are sent by your application. | */ 'from' => [ 'address' => env('MAIL_FROM_ADDRESS', '[email protected]'), 'name' => env('MAIL_FROM_NAME', 'Example'), ], /* |-------------------------------------------------------------------------- | Markdown Mail Settings |-------------------------------------------------------------------------- | | If you are using Markdown based email rendering, you may configure your | theme and component paths here, allowing you to customize the design | of the emails. Or, you may simply stick with the Laravel defaults! | */ 'markdown' => [ 'theme' => 'default', 'paths' => [ resource_path('views/vendor/mail'), ], ], ];

回答 0 投票 0

致命错误:找不到“PHPMailer”类

我试过 :include_once('C:\Inetpub\wwwroot\php\PHPMailer\PHPMailerAutoload.php'); 致命错误:第 151 行的 C:\Inetpub\wwwroot\php\index.php 中找不到类“PHPMailer” 我把 PHPMailerAu...

回答 13 投票 0

PHPMailer ERROR 500 host.com 目前无法处理此请求

当主机运行 PHPMailer 脚本时,它只是给我错误 500 host.com 当前无法处理此请求。所有其他文件都工作正常我没有错误只是针对 PHPMailer 脚本。

回答 0 投票 0

更改当前电子邮件发送脚本以使用 SMTP

大家下午好,你们好吗? 我在这里遇到问题,因为我更换了主机,并且我的反馈系统不再发送电子邮件,因为主机禁用了某些功能: “PHP 的 ma...

回答 0 投票 0

SMTP-通过我的主机通过 smtp 发送电子邮件时出错

我在使用 SMTP php 邮件程序发送电子邮件时遇到问题。 通过 smtp 邮件程序发送电子邮件。 1-i 通过使用安全连接(tls 或 ssl)(关闭)(img-1)的 smtp 测试发送电子邮件 ** 成功 **。(https://dnschec...

回答 0 投票 0

PHPMailer 如何通过数组 id 群发邮件

如标题所示,如何使用 PHPMailer 群发电子邮件?我有一个代码,当用户单击表格中的特定按钮时,会通过他们的电子邮件(通过选择查询)向该人发送电子邮件。现在我

回答 1 投票 0

从主机端用 php 发送邮件

用户 1 如何向管理员发送邮件,用户 2 如何向用户 1 发送邮件,其中发件人不需要在托管端的 php 中提供他们的 gmail 身份验证密码?意味着我的发送者和接收者都不是

回答 0 投票 0

PHPMailer - 按文件大小和文件类型限制电子邮件附件

我知道之前有人在这个论坛上问过关于 PHPMailer 电子邮件附件的问题。我想我已经通读了几乎所有的内容,但我仍然无法弄清楚如何正确地做到这一点。 我有厕所...

回答 0 投票 0

PHP Mailer 中的简单 PDF 文件附件

我正在尝试使用 PHP 邮件程序发送带有附件的电子邮件的最简单方法。 我试过用这个 $mail ->addAttachment("path_to_pdf", "pdf_name); 但它不起作用,因为...

回答 1 投票 0

在 Phpmailer 中定义复选框答案的值

我正在尝试使用 phpmailer 制作一个简单的联系表,但我很难理解复选框的工作原理。这是我有问题的部分: HTML: 我正在尝试使用 phpmailer 制作一个简单的联系表单,但我很难理解复选框的工作原理。这是我有问题的部分: HTML: <input name="selection" type="checkbox"> PHP: $mail->Body = " $selection = $_POST['selection']; Answer is ".$_POST["selection"]." " 单击复选框并提交表单后,上面的函数会在电子邮件中打印“Answer is on”。 单击复选框后如何打印“答案是肯定的”,而未以简单的方式单击复选框时如何打印“答案是否定的”? 这是我试过的,不知道能不能解决你的问题…… if(isset($_GET['answer'])) { echo "Answer is correct."; // more details here } else { echo "Answer is incorrect."; } ?> <form action="/" method="GET"> <label for="answer"> <input type="checkbox" name="answer" id="lol" onchange="this.form.submit()" <?=$_GET['answer'] == "on" ? "checked" : ""?>> Correct? </label> </form>

回答 1 投票 0

© www.soinside.com 2019 - 2024. All rights reserved.