Jump to content

Search the Community

Showing results for tags 'phpmailer'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General Discussion
    • Website Management and Coding
    • Technology and the Internet
    • Philosophy, Politics, and Science
    • Art and Entertainment
    • Other Discussion
  • HelioHost
    • Questions
    • Customer Service
    • How You Can Help
  • HelioNet
    • News
    • Contact HelioNet

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

Found 2 results

  1. I'm implementing a simple email marketing tool. I'd like to know what the limit of emails I can send everyday is, using phpmailer or whatever? And what would you recommend? Thanks
  2. Hi Heliohost, My username is Zekus. I am using Tommy server. I cannot send mail from Outlook/Gmail/Mailgun SMTP, which is working with my local WAMP. This is the error I received. But when I commented "$mail->isSMTP();" from my php file, it is working but an email will be sent to Junk mail.I did try both port 465 for SSL and 587 for TLS.Here is my PhpMailer code. <?php namespace PHPMailer; use PHPMailer\PHPMailer\PHPMailer; use PHPMailer\PHPMailer\SMTP; use PHPMailer\PHPMailer\Exception; require_once 'PHPMailer.php'; require_once 'SMTP.php'; require_once 'Exception.php'; $mail = new PHPMailer; $mail->IsSMTP(); $mail->SMTPDebug = 0; $mail->Host = 'smtp-mail.outlook.com'; $mail->Port = 587; $mail->SMTPSecure = 'tls'; $mail->SMTPAuth = True; $mail->CharSet = 'UTF-8'; $mail->SMTPKeepAlive = true; $mail->Username = "admin@job4dent.com"; $mail->Password = "*****"; $mail->setFrom('admin@job4dent.com', 'Job4Dent'); $mail->addAddress('job4dent@outlook.com', 'John Doe'); $mail->Subject = 'PHPMailer 6.0 Outlook SMTP test'; $mail->Body = "Hi,<br> This system is working perfectly."; $mail->IsHTML(true); $mail->AltBody = 'This is a plain-text message body'; if (!$mail->send()) { echo "Mailer Error: " . $mail->ErrorInfo; } else { echo "Message sent!"; } When I change Host to tommy.heliohost.org or change my username and password, my email can be sent but with warning of fraud email that was not directly sent by Google/Outlook. It can be tested via https://4dent.tk/cronSendMailClinicGMail.php Many thanks, Zekus
×
×
  • Create New...