Should we noindex our JSON files? Digital Media Digital Marketing Search Engine Strategies by Dani … we should be adding an X-Robots-Tag: noindex HTTP header to these JSON files. On one hand, we don't… ‘Advanced AI should be treated similar to Weapons of Mass Destruction’ Community Center by Johannes C. … humanity. In retort, he proposes a provocative International Control Treaty.** ![header-agitalks-demetrius.jpg](https://static.daniweb.com/attachments/4/7653d6d6303a1d7a716bdbb6853b7428… Online subission forms not sending emails of submitted info Programming Web Development by david.tigner …, 'response' => $recaptcha_response ); $recaptcha_options = array( 'http' => array( 'header' => "Content-type: application/x-www-form-urlencoded\r…the form page with an error message header('Location: form.php?error=recaptcha'); exit(); } ?>… Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim …;DKIM_passphrase = ''; // $mail->DKIM_identity = $mail->From; // //Suppress listing signed header fields in signature, defaults to true for debugging purpose // $mail… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner …;DKIM_passphrase = ''; // $mail->DKIM_identity = $mail->From; // //Suppress listing signed header fields in signature, defaults to true for debugging purpose // $mail… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner …;DKIM_passphrase = ''; // $mail->DKIM_identity = $mail->From; // //Suppress listing signed header fields in signature, defaults to true for debugging purpose // $mail… Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim … for it, like you can add a "replyto:" header to be able to reply back to the custom email… AirTM API: How to Build a Form? Programming Web Development by FarrisFahad …/create-purchase) I am not sure where to include the Header information. Can you help? 'Prepare for the Earliest Possible AGI Deployment Scenario' Community Center by Johannes C. … assure responsible and ethical development today – says Jen Rosiere Reynolds.** ![header-agi-talks1.png](https://static.daniweb.com/attachments/4/5595ff2ec36fde155011d21ea73dcd78… '30% of Activities Performed by Humans Could Be Automated with AI' Community Center by Johannes C. … specialized AI systems and the future of human-AI collaboration.** ![header-agi-talks-adr.jpg](https://static.daniweb.com/attachments/4… Re: GCC Fails to Recognize Parameters Programming by toneewa …> } int main() { AVFormatContext* fmt_ctx = NULL; int ret; // read the header of input stream. ret = avformat_open_input(&fmt_ctx, "snow.mp4… Re: Read file properties of video files in C++ Programming Software Development by toneewa …> } int main() { AVFormatContext* fmt_ctx = NULL; int ret; // read the header of input stream. ret = avformat_open_input(&fmt_ctx, "snow.mp4… Re: Backlink Indexing issue Digital Media Digital Marketing Search Engine Strategies by Dani … neither have a meta noindex tag nor a noindex http header), as well as the pages’ URLs not matching any rule… 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 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: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner Ran into some new issues. Here goes. In order to download PHPMailer, must download Composer. In order to install Composer, need a Command Line PHP.exe file. I do not have one of these. I have been using PHP services from URL provider, 1 & 1/Ionos since 2011. They said in order to get a Command Line PHP.exe file, requires SSH to 'Connect to … Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim You don't need composer or access to the php.exe. just locate the PHPmailer Directory into your web root, to keep it simple and the require links should point to where it is located. mine is `require 'includes/PHPMailer/src/PHPMailer.php';` cause I put it in a folder called includes, this should be relative to the file that is using it.… 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&… Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim Hi David, > More problems. I incorporated the coding Biiim provided. Before any changes, after submission, would display the correct (yellow) screen. After code changed, not only will still not send email but screen turns blank white. URL provider, IONOS, told me that the Host is smtp.ionos.com and the Username and password are for an email… 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 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 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 That's a problem. The email addresses issued for @RadiantNewHorizonHomes.com or 1 of the other 4 are created by me. Unknown parties that submit online forms on one of my domains would not have one of these email addresses. I would want to receive the submitted info from senders of any email address like has been since 2011 until Feb 2024. This is … Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner There is no making emails "appear" to be from other than the true sender. I'll explain further. Suppose John Smith has an email address of johnsmith@gmail.com. John then goes on to one of my sites, lets say RTO-USA.net, and fills out an online submission form and enters his email address truthfully (johnsmith@gmail.com). This email … Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner If John isn't the sender then who is ? Also, continuing from the John Smith example, if John Smith enters his email address as johnsmith@SubterraneanSoundStudio.com or johnsmith@RTO-USA.net (ficticious email addresses) then the submitted info would be emailed to me but if he uses his true email address then it would not. Continuing from this … Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner Then it seems to me that if I change $from = $_POST['ShowingEmail']; to $from = "Unknown@RTO-USA.com"; (or @SubterraneanSoundStudio.com, etc.) then the submitted info should send. This Unknown@RTO-USA.com email address is fake but apparently that doesn't matter. The only thing that matters is that the @domain.com part of the email …