Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner …use PHPMailer\PHPMailer\PHPMailer; use PHPMailer\PHPMailer\Exception; require 'PHPMailer/PHPMailer/src/Exception.php'; require 'PHPMailer/PHPMailer/src/PHPMailer.php'; require 'PHPMailer/PHPMailer/src…;send(); } catch (Exception $e) { /* PHPMailer exception. */ echo "Message could not be … Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner … crash. First I added: `require 'PHPMailer/PHPMailer/src/Exception.php'; require 'PHPMailer/PHPMailer/src/PHPMailer.php'; require 'PHPMailer/PHPMailer/src/SMTP.php';` The program did not… that caused the crash and added in the `use PHPMailer\PHPMailer\PHPMailer; use PHPMailer\PHPMailer\Exception;` lines (come before the require lines). This … Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim … it with the [PHP Mailer](https://github.com/PHPMailer/PHPMailer), it gives you much better control over it …lt;?php use PHPMailer\PHPMailer\PHPMailer; use PHPMailer\PHPMailer\Exception; require 'includes/PHPMailer/src/Exception.php'; require 'includes/PHPMailer/src/PHPMailer.php'; require 'includes/PHPMailer/src/SMTP.… Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim …use PHPMailer\PHPMailer\PHPMailer; use PHPMailer\PHPMailer\Exception; require 'includes/PHPMailer/src/Exception.php'; require 'includes/PHPMailer/src/PHPMailer.php'; require 'includes/PHPMailer/…use 587 if you have set `SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS` $mail->setFrom('david.tigner@RadiantNewHorizonHomes.… Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim …it is located. mine is `require 'includes/PHPMailer/src/PHPMailer.php';` cause I put it in a …- or wherever you put the PHPMailer folder. like `require '../../includes/PHPMailer/src/PHPMailer.php';` I don't have … go to Github [https://github.com/PHPMailer/PHPMailer](https://github.com/PHPMailer/PHPMailer) click on the green button that … Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim …: e.g. in the root directory are directories: PHPMailer, RNHindex, etc.). IONOS tech line said that the … situation you might try [mail-not-sending-with-phpmailer-over-ssl-using-smtp](https://stackoverflow.com/questions/18535294…/mail-not-sending-with-phpmailer-over-ssl-using-smtp) From looking around a… Re: What's up with XOAuth? Programming Web Development by toneewa [Setting up phpmailer-office-smtp](https://stackoverflow.com/questions/24947434/setting-up-phpmailer-with-office365-smtp) [PhpMailer example](https://github.com/voku/PHPMailer-BMH/blob/master/examples/index.php) Maybe these will help. Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani …/what-s-up-with-xoauth). It's my understanding that PHPMailer has built-in XOauth2 support so that was a good…-server) that has an example implementation of using XOauth2 with PHPMailer. Re: What's up with XOAuth? Programming Web Development by toneewa … you were thinking of something like this: <?php // Include PHPMailer-BMH library require 'vendor/autoload.php'; // Adjust the path as… Re: What's up with XOAuth? Programming Web Development by Dani Unfortunately the first link is for support with PHPMailer itself (totally different library), and the second link is just a generic example of how to use the library which we are already doing. Thank you for trying though! Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner … email addresses need to be authenticated and a new STMP PHPmailer program needs to be used. In generic coding I got… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner … into some new issues. Here goes. In order to download PHPMailer, must download Composer. In order to install Composer, need a… Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani … be a syntax error, or it could also be that PHPMailer is not in the location you're telling PHP to… phpmailer Programming Web Development by programmingman I am having difficulty using phpmailer. I get connection errors. The most recent error is: Connection: opening to smtp.gmail.com:587, t=300, opt=array () Can someone tell me what is wrong? Re: phpmailer Programming Web Development by edbr … smtpmailer($to, $from, $from_name, $subject, $body) { global $error; $mail = new PHPMailer(); // create a new object $mail->IsSMTP(); // enable SMTP $mail… phpmailer error Programming Web Development by AARTI SHRIVAS … <body> <?php require_once('class.phpmailer.php'); $mail = new PHPMailer(false); // the true param means it will ….html')); $mail->MsgHTML($body); $mail->AddAttachment('images/phpmailer.gif'); // attachment $mail->AddAttachment('images/phpmailer_mini.gif'); //… PHPMailer and gmail Programming Web Development by thebluestar …quot; /> <title>Gui mail su dung PHPmailer and gmail</title> </head> &…lt;body> <?php require_once('PHPMailer/class.phpmailer.php'); ?> <?php define('GUSER', 'tranlinh.nmt@…$from, $from_name, $subject, $body) { global $error; $mail = new PHPMailer(); // tạo một đối tượng mới t… PHPMailer Bug Programming Web Development by Thomasio …is: [CODE] $path = $_SERVER["DOCUMENT_ROOT"]."phpmailer/"; set_include_path(get_include_path() . PATH_SEPARATOR . $path); for($i … 0; $i < 60; $i++) { $mail = new PHPMailer(); $mail->IsSMTP(); $mail->Host = "..."; //… be resource, integer given in ... /PHPMailer/class.smtp.php on line 215 I´ve… PHPmailer to 2 places? Programming Web Development by turpentyne … '../PHPMailerAutoload.php'; $results_messages = array(); $mail = new PHPMailer(true); $mail->CharSet = 'utf-8'; class phpmailerAppException…','phpmailer_mini.gif'); // optional name $mail->addAttachment('images/phpmailer.png', 'phpmailer.png'); // optional name try { $mail->send();… Re: phpmailer error Programming Web Development by LastMitch …& line **208** is this: $mail->AddAttachment('images/phpmailer.gif'); // attachment $mail->AddAttachment('images/phpmailer_mini.gif'); // …new_submit_image**: It should look like this: $mail->AddAttachment('new_submit_image/phpmailer.gif'); // attachment $mail->AddAttachment('new_submit_image/phpmailer_mini.gif'); … Re: phpmailer error Programming Web Development by LastMitch **@arti18** >Could not access file: images/phpmailer.gif Could not access file: images/phpmailer_mini.gif SMTP Error: Could not authenticate. Mailer Error: SMTP Error: Could not authenticate. There's an issue with your folder. Either it's not linking correctly so that why it can't attached. Re: PHPMailer Bug Programming Web Development by davidbcn … SendMail($msg,$subject,$addresses) { require "class.phpmailer.php"; //Fetch from email here foreach($addresses …$addresses=array_unique($addresses); $row = FetchAllsettingsCustomMailchmp(); //end fetch $mail = new PHPMailer(); $mail->PluginDir = ""; $mail->Host = "… phpmailer-fe Programming Web Development by jasper77 Hello! I am missing something... I am using phpmailer-fe to collect the information from a form and send …-mail. This is the first time I'm using the phpmailer scripts and they seem straightforward. The form seems to process… I'm hoping you may know of something in the phpmailer scripts that need to be changed that I may be… Re: PHPMailer and gmail Programming Web Development by thebluestar … this file the smtp port is 25 but in the PHPMailer it is 456. phpmailer and recaptcha Programming Web Development by DonaldAlexander hi iv got phpmailer and recaptcha together but im stuck. iv integrated … if success i want it to submit the form to phpmailer. please see the following code [CODE] // redirect to …success page if ($success){ header( 'Location: ../Scripts/_lib/phpmailer-fe.php'); } else{ print "<meta http-equiv=\"… PHPMailer Issues Programming Web Development by VernonDozier …. Code is below. [code=PHP] <?php require("class.phpmailer.php"); $emailAddress = $_POST['emailAddress']; $htmlFilename = $_POST['htmlFilename']; $plainFilename…fwrite($handle, '\n'); fclose($handle); die($error); } $mail = new PHPMailer(); // To load the English version $mail->SetLanguage("en… Re: PHPMailer Bug Programming Web Development by pritaeas …] // Settings that do not change before the loop $mail = new PHPMailer(); $mail->IsSMTP(); $mail->Host = "..."; // SMTP address… PHPMailer and blank email body Programming Web Development by Brandon5150 … based mailing list manager installed on my server, which uses phpmailer to send. For most users that I send to, they… the message body is blank. X-Priority: 3 X-Mailer: PHPMailer (phpmailer.sourceforge.net) [version 2.0.4] Errors-To: catchall@mysite… Re: PHPmailer to 2 places? Programming Web Development by pixelsoul I misunderstood at first read, so this really has nothing to do with PHPmailer since you don't actually want to send another email? The only way off the top of my head that I can think of to send out data to a 3rd party url would maybe be to use cURL to post the data. Here's an example http://davidwalsh.name/curl-post Re: PHPmailer gmail mail server Programming Web Development by LastMitch **@pcvrx660** Here is the link to `PHPMailer`: http://phpmailer.worxware.com/index.php `Click -> Product -> PHPMailer -> Support` This will show you how to install `PHPMailer`.