Dead Internet Theory: Is the Web Dying? Community Center by Johannes C. … sand- and [bottle-sculptures](https://www.reddit.com/r/ChatGPT/comments/1bjxrfu/in_only_3_weeks_ive_decided_to_drop_facebook/), [tiny houses](https://twitter.…com/jc_zeller/status/1781661004830568836), [celebrities](https://www.reddit.com/r/singularity/comments/1clyvf6/ai_generated_photo_of_katy_perry_in_the_met_gala/), and, of course, [Jesus… Please review DaniWeb :) Community Center Meta DaniWeb by Dani If you love DaniWeb, or even if you don't, it would be much appreciated if you could [review us on Google](https://g.page/r/CSyiHReUFoTLEAI/review). Much thanks!! Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner …= "Testimonial Submission"; $message = "\r\n" . "Rent-To-Own America Testimonial… Submission" . "\r\n" . "\r\n" . "Name: " .… About Us: " . htmlspecialchars($_POST['TestimonialHearing']) . "\r\n" . $from = "Submissions@RTO-USA.net&… Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani You only need to use htmlspecialchars() if the text appears on a website or an HTML email. I’m not sure if you need it if you’re sending plaintext emails. Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner … question)). $from = $_POST['ShowingEmail']; $headers = "From: $from" . "\r\n"; Re: Determine if email address is used by scammer Digital Media Digital Marketing Search Engine Strategies by rproffitt The police email scam is well known. That's about all you need to know that it's the scam of note. Example: https://www.reddit.com/r/Scams/comments/1b592gr/is_this_real/ r/Scams has many other scams of note. Worth noting: 1. Do not track them down. 2. Ignore, block and report as spam. 3. No police use a Gmail account. Re: Eero plus vs NextDNS Hardware and Software by rproffitt Why either? https://www.reddit.com/r/eero/comments/tv39ig/eero_secure_vs_nextdns/ kicks it around and I can't see why to use either. Re: Eero plus vs NextDNS Hardware and Software by rproffitt HTTPS and DNS? Why not use the Brave browser then? Too much to type about that here so read how to set up at https://www.reddit.com/r/brave_browser/comments/ucx1jp/most_secure_dns/ Then again, why aren't you using a VPN and calling it a day? Re: Trying to create a lan-to-lan vpn between two differents networks Hardware and Software Networking by rproffitt I've only dabbled in Pfsense but know to ask about that in https://www.reddit.com/r/PFSENSE/ where there are experts. Having said that, be prepared to answer deeper questions about said setup, routers and more. 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 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 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 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 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 I am not pretending to send emails from x@gmail.com or any other email address. Here's what is happening: If a submitter (the one that fills out the form and presses the Submit button) doesn't enter an email address ending in a domain that I own, the submitted info will not send. If they do, it will. The email address they enter in this case does … 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. Online subission forms not sending emails of submitted info Programming Web Development by david.tigner … 'header' => "Content-type: application/x-www-form-urlencoded\r\n", 'method' => 'POST', 'content' => http_build_query… wants to see them: " . $_POST['ShowingTimes'] . "\r\n" . "Questions or Comments: " . $_POST['… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner …;; // $message = "RadiantNewHorizonHomes.com General Inquiries" . "\r\n" . "\r\n" . // "Name: " . $_POST['Name'] …// $from = $_POST['Email']; // $headers = "From: $from" . "\r\n"; // $to = "david.tigner@RadiantNewHorizonHomes.com"; // mail… Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani … here $survey = "RadiantNewHorizonHomes.com General Inquiries" . "\r\n" . "\r\n" . "Name: " . $_POST['Name'] . "… Address: " . $_POST['Email'] . "\r\n" . "Phone Number: " . $_POST['Phone'] . "\r\n" . "Comments or Questions… Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani … HTML-escaped. Instead of `"Name: " . $_POST['ShowingName'] . "\r\n" .` you should be doing `"Name: " . htmlspecialchars…($_POST['ShowingName']) . "\r\n" .`. That being said, if the code stayed the… Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim …/SMTP.php'; $survey = 'Form Data:'."\r\n"; $survey .= 'Some form data:'."\r\n";//make your email body to… Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim … the end: "Comments or Questions: " . $_POST['Message'] . "\r\n" . //make your email body to send here Should… be "Comments or Questions: " . $_POST['Message'] . "\r\n"; //make your email body to send here Re: How can I upload a tar.bz2 file to openstack swift object storage container Programming Software Development by Salem …tar.gz foo.tar.bz2 foo.tar -rw-rw-r-- 1 sc sc 181 Mar 23 08:06 … 23 08:07 foo.tar.gz -rw-rw-r-- 1 sc sc 10240 Mar 23 08:26 …gt;>> tf1 = tarfile.open('foo.tar.bz2',mode='r') # let it figure out the compression >>>…gt;>> tf2 = tarfile.open('foo.tar.gz',mode='r') # let it figure out the compression >>>…