Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner … needs to be done is have the email address the submission form was sent from be something like submissions@RTO-USA… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner … could reply back to them. There are many online submission pages running on many sites which do not require the… @gmail.com then the only website that an online submission page would send submitted info from would be gmail.com…seems ridiculous and obviously there is a way for online submission pages to send submitted info without the user having to… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner …']. I'll be trying that to see if the online submission pages send without the submitter having to enter an email… number is one of the questions on the on-line submission form (most of them ask this question)). $from = $_POST['ShowingEmail… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner …, lets say RTO-USA.net, and fills out an online submission form and enters his email address truthfully (johnsmith@gmail.com… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner …, lets say, I, David Tigner, submit one of my online submission forms using my real email address of truth625@yahoo.com… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner I'll do whatever works to get the submission pages to send again with any submitter's email address. The End Justifies The Means. If it works then I can refine it as needed. Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim Hey David, You should not pretend to send an email from `x@gmail.com` as this is spoofing. I forward all forms from a website from a generic email such as `forms@` or `enquiry@` (`@yourlocaldomain.com`) Emails have basic checks done on them, which is why your spoofing fails, you are trying to say `X@gmail.com` sent an email but gmail didn'… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner They said they can't help me and to contact a web developer because it deals with coding. Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani > If this does in fact solve the problem, it would make replying back to the submitter a little bit more complicated In your mail headers, you can specify both a From: email address, that is an email address from your domain name, as well as a separate Reply-To: email address, that can be any email. This way, when someone clicks on the Reply … Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner The way I see it is that the email address in question is one inputted by the submitter. What if this question is not asked ? So I'm seeing if in the back end PHP file, the email address in question is not anything entered by submitter but simply one with the correct @site.com ending. That way should slip "under the radar" and submitted … 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 …info to be sent. Here it is. I have online submission pages on 4 websites: RadiantNewHorizonHomes.com, RTO-USA.net, ….net, etc.). If, on the front end of the submission form, in the input box for sender's email address… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner My 4 domains are all through URL provider IONOS. The question is why does the sender's email address as entered on the front end of the on-line submission form have to have the same ending as the domain name of the site or one of the other 3 or else submitted info fails to send ? 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 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 incorporated the coding Biiim provided. Before any changes, after submission, would display the correct (yellow) screen. After code changed… the domain that the online submission page is on, and since these online submission pages are on a total…code added (plus the original all //'d). The submission pages use ReCaptcha 3 which works so I omitted … Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim …I incorporated the coding Biiim provided. Before any changes, after submission, would display the correct (yellow) screen. After code changed… the domain that the online submission page is on, and since these online submission pages are on a total…code added (plus the original all //'d). The submission pages use ReCaptcha 3 which works so I omitted … Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner … was that something changed in Feb 2024 (last on line submission form I received was in early Feb 2024 so the… Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim … was that something changed in Feb 2024 (last on line submission form I received was in early Feb 2024 so the… 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 blank white. That's a PHP fatal error. It could be a syntax error, or it could also be that PHPMailer is not in the location you're telling PHP to look. Do you have any way of accessing the error log? Without access to the server, perhaps through a web-based control … 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&… Online subission forms not sending emails of submitted info Programming Web Development by david.tigner …, just nothing sends at all. I tested multiple on line submission forms on several websites. Same thing, nothing is sending. The…); if ($recaptcha_json->success) { // ReCaptcha validation successful, process the form submission // Your form processing code goes here $subject = "Showing Scheduling… Re: What is best method for link building nowadays? Digital Media Digital Marketing Search Engine Strategies by ani03 Article Writing, Blogging, Directory Submission, Social Bookmarking, PPT Submission etc. 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… Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim In your code where you write `mail($to,$subject,$message,$headers);` if you want to get error messages or "do something if it fails" you need to alter it a bit to something like: if(mail($to,$subject,$message,$headers)){ //if successful do something }else{ //if error do something else } //or… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner I do not have access to the PHP error log nor do I know how to check to see if mail() is returning false. The coding I'm using has worked (e.g. sent email with submitted info) for 13 years and now stopped working. My URL/PHP provider, Ionos, claims it won't send because all recipient email addresses need to be authenticated and a new STMP PHPmailer… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner Re: Biiim's post, the coding you suggest to get error messages looks like something good to try and the PHP Mailer stuff looks the same as the generic code I got from Ionos. It sounds like all these methods are appearing favorable for solving the problem. This kind of troubleshooting can be very frustrating so thanks for your help. Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani I wonder if the problem is that your php mail() function is configured to use SMTP in your php.ini file. A lot of SMTP servers switched over the past year or so to using XOAuth2 for authentication. A username + password in your config settings will no longer suffice to establish a connection. You can see me complaining about it [here](https://www.… Re: Automatic Directory Submission is a Waste of Time Digital Media Digital Marketing by bobchrist Submission to niche oriented directories in local network still work however it may not necessarily help if you only depends on directory submission. Re: Directory submission? Digital Media Digital Marketing Search Engine Strategies by SJaved7 Submission in SEO is not a effective way for site promotion. Now you should have to focus on link earning with your content,try to get links in natural way instead of link building.