最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

PHPMailer With Vite - Stack Overflow

programmeradmin1浏览0评论

I cannot find any other question regarding this but I am capable of using PHPMailer with a local XAMPP server - however I have switched to a Vite server to use Three.js applications with. I want to now use PHPMailer but the PHP prints directly onto the website page, rather than running. Does anyone know of something I could do to integrate PHPMailer with a Vite server? Thanks! I have left out the rest due to it stops working and starts printing onto the page after the first ->

<?php

//Import PHPMailer classes into the global namespace
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\SMTP;
use PHPMailer\PHPMailer\Exception;

// Include library files to send emails
require '..\..\vendor\phpmailer\phpmailer\src\Exception.php';
require '..\..\vendor\phpmailer\phpmailer\src\PHPMailer.php';
require '..\..\vendor\phpmailer\phpmailer\src\SMTP.php';

//Load Composer's autoloader
require __DIR__ . '..\..\..\vendor\autoload.php';

// Prepare response to user after new account attempted to be created
$msg = "";



    $mail = new PHPMailer();
    $mail->isSMTP();                                       
    $mail->Host       = 'smtp.gmail';                
    $mail->SMTPAuth   = true;                           
    $mail->Port       = 25;
    /* I have left out the rest due to it stops working and starts printing onto the page after the first ->*/

?>

PHP printing on website

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论