Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner … 4 domains can have email addresses associated with them (e.g. name@RadiantNewHorizonHomes.com, name@RTO-USA.net, etc.). If, on… or fake), the right side of the email address (e.g. the @url.com part) MUST be @RadiantNewHorizonHomes.com, @RTO-USA… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner …. 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… 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: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by toneewa …repaint(); } public void paintComponent(Graphics g) { super.paintComponent(g); // Move the balls for (int….getRadius()); } // Display the collisionCount g.setColor(Color.black); g.drawString("Collision Count: " … Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by toneewa …repaint(); } public void paintComponent(Graphics g) { super.paintComponent(g); g.setColor(Color.red); // move the…getRadius()); } // display the collisionCount g.setColor(Color.black); g.drawString("Collision Count: " … Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by jprog1000 …(ActionEvent e) { repaint(); } public void paintComponent( Graphics g ) { super.paintComponent( g ); g.setColor(Color.red); // move the balls for (int i… (int i = 0; i <b.length; i++){ g.fillOval(this.b[i].getX(), this.b[i].getY() , this… Slaying Unicorns: How Europe Sabotages Its Own Economic Future Community Center by Johannes C. …they felt entitled to and became used to them. E.g. there is not a single gold mine in France, … Not to mention the loss caused by tight restrictions – e.g., due to limited insights because of the [GDPR](https://gdpr…of AI’, also voted to give themselves dystopian rights – e.g., [mass-surveillance with real-time facial recognition](https://www.greens… Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by toneewa Yes, this is true. Overlapping ball spawns can do that causing a chain reaction. Something like that could be done. How you handle the spawning of the new ball is what I played with a bit before. You will see better collision detection changing to: g.fillOval(ball.getX(), ball.getY(), 1 * ball.getRadius(), 1 * ball.getRadius()); VB2010- why i get a different vertical size\color on RayCasting? Programming Software Development by cambalinho …(RayHeight * 4), RayCounts, 5) imgverticalline.ForeColor(RGB(VertColor.R, VertColor.G, VertColor.B)) imgverticalline.DrawLine(RayCounts, imgverticalline.Height / 2 - RayHeight \ 2… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner ….com where the code block shown below is stored: e.g. in the root directory are directories: PHPMailer, RNHindex, etc.). IONOS… Re: Online subission forms not sending emails of submitted info Programming Web Development by Biiim ….com where the code block shown below is stored: e.g. in the root directory are directories: PHPMailer, RNHindex, etc.). IONOS… Question Answering with YouTube Videos Using RAG in LangChain Programming Computer Science by usmanmalik57 …-Y", "https://www.youtube.com/watch?v=DNNMS7l6A-g", "https://www.youtube.com/watch?v=1rh-P2N0DR4… pass data to another asp page Programming Software Development by Fergus_1 … as the url and use it make further queries. Thanks G Re: What is the Best Marketing Platform For E-commerce Website? Digital Media Digital Marketing by AndyBeohar … Ads * Instagram Ads * Email Marketing Platforms (e.g., Mailchimp) * Amazon Advertising * Content Management Systems (e.g., WordPress, Shopify) * Social Media Management Tools… Re: How NOT to do business online Digital Media Digital Marketing by Dani … wants to convert it into utilizing a payment API (e.g. something that accepts credit cards). This takes a decent amount… Re: Improve HAVING BY performance Programming Databases by Dani … the PHP code *and* send it over the wire (e.g. including network latency). When I said I was able to… Re: Improve HAVING BY performance Programming Databases by Dani … rendered. We do that with DaniWeb Connect business cards e.g. https://www.daniweb.com/connect/users/view/1 because figuring… Re: Determine if email address is used by scammer Digital Media Digital Marketing Search Engine Strategies by Dani … GMail can follow up and take the appropriate action (e.g. shut down the GMail account). Re: What's the most unexpected hobby or interest you have outside of coding? Community Center Geeks' Lounge by toneewa … great technologies for people to have a full mapping. E.g., Celiac disease, if you don't have the genes HLA… Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by jprog1000 Thank you so much for your reply and additions! It is certainly working as I wanted. I will read through the code you have added and ask you any questions I might have. I hope you don't mind. Regards Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by Dani I’ll mark this question solved :) Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by Dani … oh, sorry, missed the bit about you still needing clarifications. Feel feee to ask :) I’ll now unmark this topic as solved. /facepalm Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by jprog1000 Hello, Thank you again so much! All your additions are clear, but it seems like whenever two balls collide, more than one ball is added to the arraylist and painted. Any way to have just one ball added to the panel for every collision? Have some kind of a toggle flag in paintcomponent? Regards Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by jprog1000 Got it. Thank you so much! Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by vortex_1 In my opinion, implementing a feature in a bouncing balls simulation where a new ball is created when two balls collide can add an interesting and dynamic element to the simulation. This feature can introduce a sense of complexity and unpredictability, making the simulation more engaging and challenging for users. It could also provide an … Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by jprog1000 Great reply, vortex! Agree with all your points. Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by aishamushtaq Hi, Its helpful for me. I got my answer. 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.…