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 …, page would crash (e.g. blank white screen, HTML file that would display the screen doesn't even start at all, e… emails of submitted info were being sent at least the screen display HTML file (2nd running file after the PHP) was… Re: What are the key components of an effective email marketing campaign? Digital Media Digital Marketing by KomalBhatt … computer. Your design and text should adjust to fit the screen size. 2. Call-to-Action (CTA): Your emails should have… 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 …any changes, after submission, would display the correct (yellow) screen. After code changed, not only will still not send email… back as syntax errors but would display blank white screen regardless if the use commands are there or //'d… $mail->Port = "465"; on your blank screen, like Dani pointed out, there is the error on line… 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… as syntax errors but would display blank white screen regardless if the use commands are there or … insights on what could be causing the blank white screen ? <?php use PHPMailer\PHPMailer\PHPMailer; use … VB2010- why i get a different vertical size\color on RayCasting? Programming Software Development by cambalinho … the Fish Effect RayHeight = (ObjectSize / WallDistance) * 200 ' is the height screen\ If (OffSetGrid = ObjectSize) Then RayHeight -= 1 'picWall1.DrawTextureVerticalLine(A.MemoryHDC… Re: Online subission forms not sending emails of submitted info Programming Web Development by Dani … code changed, not only will still not send email but screen turns blank white. That's a PHP fatal error. It… Re: ASUS Laptops - my experience Hardware and Software by Reverend Jim … usual restoring delay it finally reboot and displayed the screen that allowed me to pick a default keyboard, then… the screen that gives me two options: Troubleshoot this PC Shut…selected Troubleshoot, then something else (quickly) on the next screen and eventually Windows came back up with "Jim"… Re: How Build video-player in html And css ? Programming by Kirubel_2 …: left; */ margin-top: 10px; /* text-align: center; */ padding:4%; } @media screen and (max-width: 750px ) { #side{ width: 80px; } #na li a… Re: Microsoft Copilot is missing! Hardware and Software Microsoft Windows by Reverend Jim Right click on taskbar and select taskbar settings. If you want the icon to show then turn copilot preview on. Or you can use the hotkey WINDOWS+C. Copilot should appear docked to the right of the screen.. Re: Things I hate about TV shows Community Center Geeks' Lounge by Dani Currently the thing I hate most about TV shows is how much time elapses between seasons. I feel like I've been waiting for season 2 of Severance on AppleTV for *forever*! (It's been over 2 years already since season 1 debuted.) Speaking of that, is there ever going to be a second season for Squid Game? I can't imagine that Netflix wouldn’t invest … Re: Things I hate about TV shows Community Center Geeks' Lounge by Reverend Jim Fer sher. You pretty much have to watch the previous season again before you start the next one. I'm still waiting for season 2 of The Old Man (Jeff Bridges, John Lithgow). At my age sometimes I lose the thread if two weeks goes by between episodes. Sometimes I'll wait until the end of a season before I watch any of it. I especially hate it when a … Re: Things I hate about TV shows Community Center Geeks' Lounge by pritaeas > is there ever going to be a second season for Squid Game Yes, already announced, available soon. Re: Things I hate about TV shows Community Center Geeks' Lounge by Dani That's my point, though. Gone are the days when a show would break for a summer and the next season would start up again in the fall. Re: Things I hate about TV shows Community Center Geeks' Lounge by Reverend Jim >Gone are the days That's pretty much the case for everything. I remember when TV sucked all through summer vacation and I couldn't wait for the end of September for the new seasons to start. Of course it was bittersweet because September also meant back to school. I'll mention a few more things that may have been mentioned before but I … Re: Things I hate about TV shows Community Center Geeks' Lounge by KomalBhatt You know, there are few things more frustrating than getting interested in a TV show only to find it falling short of expectations. From the overly predictable plotlines to the underdeveloped characters, there's a huge list. But what really get irritated by is when the dialogue feels forced, like the writers are trying too hard to be clever or … 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 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 …, system doesn't crash and goes to the after submission screen like its supposed to. Everything appears to be working fine… Re: VB6 - RayCasting: why my Vertical intersection is so big? Programming Software Development by cambalinho ….. works correctly RayHeight = ObjectSize / WallDistance * 320 '320 is the width screen... is for get the height of vertical line A.ForeColor…, 475 + 50, 200 / 2 + RayHeight / 2 '200 is the Height screen '475 + 50 is where it must be drawed like you… Re: VB6 - RayCasting: why my Vertical intersection is so big? Programming Software Development by cambalinho … Fish Effect RayHeight = (ObjectSize / WallDistance) * 200 '320 is the width screen If (RayHeight > 200) Then RayHeight = 200 A.ForeColor vbBlue… + 50 + RayCounts, 200 / 2 + RayHeight / 2 '200 is the Height screen because the wall never change if RayHeight is more than… Re: VB6 - RayCasting: why my Vertical intersection is so big? Programming Software Development by cambalinho … RayHeight = (ObjectSize / WallDistance) * 200 '320 is the width screen 'If (RayHeight > 200) Then RayHeight = 200 'A.ForeColor… + RayCounts, 200 / 2 + RayHeight / 2 '200 is the Height screen RayRadians = RayRadians + RadiansSteps If RayRadians >= (Player.Radians + Radian30)… Re: Extracting values from capturing groups in regex Programming Software Development by Tom_45 …/master.css" type="text/css" media="screen"> <link rel="stylesheet" href="…/custom.css" type="text/css" media="screen"> <link rel="stylesheet" href="… Re: Trying to animate sprite using DirectX9 Programming Software Development by Pavel_11 Hello, it is unneccessarily to use right movex or leftmovex , because it is to much variables. You should to use one variable movex to make it with minus or plus sign in your update function; by pressing left or right keys; because the one thing which is changable is a picture; I mean in global sense; variables like leftx, right x should be one… 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: SiteShow -- Create a slideshow of web pages Programming Web Development by PROSYS_1 wow.. its working fine... very useful for me to complete my task.. thanks 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…