Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim I checked my code and I only found 2 differences, the first is the 2 `use` commands before the require: 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.php';… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner I just discovered some new information on why the online submission pages weren't sending as during some testing I discovered there was a way for the submitted info to be sent. Here it is. I have online submission pages on 4 websites: RadiantNewHorizonHomes.com, RTO-USA.net, SubterraneanSoundStudio.com and RebHellionRecords.com. Each of these 4 … Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner This one is becoming more perplexing. After adding in the PHPMailer coding, page would crash (e.g. blank white screen, HTML file that would display the screen doesn't even start at all, e.g. error in the 1st running PHP file). Adding the semi-colon at end of line 18 (in previously discussed code) did not work and funny thing is, the original coding… Re: Online subission forms not sending emails of submitted info Programming Web Development by Chris_103 It seems like you're experiencing issues with PHP-based email functionality, where submissions are not triggering emails to be sent. Let's dive into the code snippet you provided and see if we can identify any potential issues or improvements. Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner …, after submission, would display the correct (yellow) screen. After code changed, not only will still not send email but screen turns… //'d. The 'includes' directory name from Biiim's code was changed to PHPMailer and is in the web root directory (each… Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim …, after submission, would display the correct (yellow) screen. After code changed, not only will still not send email but screen turns… //'d. The 'includes' directory name from Biiim's code was changed to PHPMailer and is in the web root directory (each… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner … doesn't know either. All they said was that something changed in Feb 2024 (last on line submission form I received… Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim … the file EDIT2: > All they said was that something changed in Feb 2024 (last on line submission form I received… 'Prepare for the Earliest Possible AGI Deployment Scenario' Community Center by Johannes C. … of people saw the information, that their minds or actions changed. I hope very soon we can understand how people “typically… Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani > After code changed, not only will still not send email but screen turns … What's your favorite productivity hack outside of coding? Community Center by Dani … my laptop with a completely fresh perspective. Unfortunately, Palo Alto changed a lot during COVID. Nowadays, it's much more like… Re: Redirect non-www to www cons? Digital Media Digital Marketing Search Engine Strategies by Dani I guess that’s changed since I submitted my site what I feel like is at least a decade ago. Re: ASUS Laptops - my experience Hardware and Software by Reverend Jim … got the laptop everything was formatted NTFS so if they changed that then bad on them. I will make sure to… Re: Improve HAVING BY performance Programming Databases by Biiim …'t have to be re-run again when nothing has changed, you generally don't need to bother with this though… Re: What Would You Like To See In A SearchEngine ? Community Center Geeks' Lounge by Dani Why would I, as the website publisher, fill out a form on your search engine's website anytime I update a page? Re: What Would You Like To See In A SearchEngine ? Community Center Geeks' Lounge by Dani Just genuinely curious what ever became of this project? Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani To clarify, I am suggesting: [...] //make your email body to send here $survey = "RadiantNewHorizonHomes.com General Inquiries" . "\r\n" . "\r\n" . "Name: " . $_POST['Name'] . "\r\n" . "E-mail Address: " . $_POST['Email'] . "\r\n&… Re: What's your favorite productivity hack outside of coding? Community Center by jacobss One of my favorite productivity hacks outside of coding is the Pomodoro Technique. Re: What's your favorite productivity hack outside of coding? Community Center by Reverend Jim Odd that something so basic and obvious needs to be named. Of course, "Pomodoro Technique" is a lot shorter than "go hide in the server room so my boss won't keep interrupting me so I can get some work done" technique. At least that's what I used to call it. Re: What's your favorite productivity hack outside of coding? Community Center by Dani I don’t think there’s a better answer than that. Productivity hack when not coding are none other than breaks from coding. It’s so simple :) Re: What's your favorite productivity hack outside of coding? Community Center by Dani So basically my Palo Alto technique :) Re: What's your favorite productivity hack outside of coding? Community Center by Reverend Jim >So basically my Palo Alto technique :) A lot easier and more pleasant in mid-winter in Palo Alto than here in Winnipeg. Why am getting different syntax errors when running a Python script Programming Software Development by Tom_45 …, the error message invalid escape sequence on \d, so I changed it to look for a numeric range. When I ran… Online subission forms not sending emails of submitted info Programming Web Development by david.tigner … I received was on 2/6/2024. No coding was changed at all, just nothing sends at all. I tested multiple… Re: Installing programs from Github Programming Software Development by Reverend Jim …. As long as the source code and packages have not changed there is no need to reconvert so subsequent runs should… Re: Trying to animate sprite using DirectX9 Programming Software Development by Pavel_11 … an order in your code;just found some places and changed it; if you want to make it more readable;do… Re: Why am getting different syntax errors when running a Python script Programming Software Development by Tom_45 After I posted this question I noticed that I was missing the raw string indicator and the capture group enclosing parenthesis on the findall, which explains the subscripting error. So, hold off on the answers for now. I'm still having other issues with multiple file runs, though. Re: Why am getting different syntax errors when running a Python script Programming Software Development by Tom_45 Finished the assignment and was able to work out the bugs I was encountering. In addition to the issues I mentioned in my last reply, I had several instances of not indenting properly so that statements like exit() were not executing because their indention made them part of an if statement. Re: Postfix authentication problem Hardware and Software Linux and Unix by chickenbirds > I am trying to set-up Postfix on my Ubuntu local web development machine for send-only e-mails using Gmail so I can test e-mails sent by a web app I am developing. Even though this is an old post I wanted to reply as I found it while trying to setup my own postfix mailrelay on my private cloud server with Debian that hosts our small … Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani The first thing I will say is never output `$_POST[]` content directly into the HTML without escaping it first. You are leaving yourself wide open to an HTML injection attack. Not only that, but you're also leaving yourself open to invalid HTML. All it takes is to wrap your user-sent variables with htmlspecialchars to make sure they're HTML-escaped…