以下是一个示例代码,演示如何在Bootstrap中使用PHPM
ai
ler返回原始页面并显示成功
消息
。
// 引入 PHPMailer 类
require 'PHPMailer/PHPMailer.php';
require 'PHPMailer/SMTP.php';
require 'PHPMailer/Exception.php';
// 设置 PHPMailer
$mail = new PHPMailer\PHPMailer\PHPMailer();
$mail->isSMTP();
$mail->Host = 'smtp.example.com';
$mail->SMTPAuth = true;
$mail->Username = 'your-email@example.com';
$mail->Password = 'your-email-password';
$mail->SMTPSecure = 'tls';
$mail->Port = 587;
// 设置邮件内容和收件人
$mail->setFrom('your-email@example.com', 'Your Name');
$mail->addAddress('recipient@example.com', 'Recipient Name');
$mail->Subject = 'Test Email';
$mail->Body = 'This is a test email';
// 发送邮件
if ($mail->send()) {
// 发送成功,返回原始页面并显示成功消息
header('Location: index.php?success=1');
} else {
// 发送失败,返回原始页面并显示错误消息
header('Location: index.php?error=1');
在你的原始页面中,你可以使用Bootstrap的警告框来显示成功或错误
消息
。
<!-- index.php -->
<!DOCTYPE html>
<title>Bootstrap + PHPMailer</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
</head>
<div class="container">
<?php if (isset($_GET['success'])): ?>
<div class="alert alert-success" role="alert">
Email sent successfully!
<?php elseif (isset($_GET['error'])): ?>
<div class="alert alert-danger" role="alert">
Failed to send email. Please try again later.
<?php endif; ?>
<!-- Your form or content here -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.4/dist/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>
当邮件发送成功时,URL会重定向到index.php?success=1
,显示成功消息。当邮件发送失败时,URL会重定向到index.php?error=1
,显示错误消息。根据你的需求,你可以自定义消息内容和样式。