Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner … true information and it doesn't get sent but enter false information and it does. That's anti-spoof measures… Summarizing YouTube Video Transcriptions Using Distil Whisper and LLM Programming Computer Science by usmanmalik57 …;128kbps" acodec="mp4a.40.2" progressive="False" type="audio"> ``` Next, we will download… 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 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 … 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. Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by toneewa …y = y; this.radius = radius; this.xUp = false; this.yUp = false; this.xDx = 1; this.yDy = 1; }… this.y <= b.y){ this.xUp = false; this.yUp = false; b.xUp = true; b.yUp = true; return… Re: Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by toneewa …else if ( x >= this.panelwidth - 2 * this.radius ) { xUp = false; xDx = ( int ) ( Math.random() * 5 + 2 ); } if … this.y <= b.y){ this.xUp = false; this.yUp = false; b.xUp = true; b.yUp = true; return… Bouncing Balls: Creating a new ball when two balls collide Programming Software Development by jprog1000 …y = y; this.radius = radius; this.xUp = false; this.yUp = false; this.xDx = 1; this.yDy = 1; } … this.y <= b.y){ this.xUp = false; this.yUp = false; b.xUp = true; b.yUp = true; }… How to Optimize RecyclerView performance by implementing the ViewHolder Programming Mobile Development by Mikekelvin … view = LayoutInflater.from(parent.getContext()).inflate(R.layout.item_layout, parent, false); return new ViewHolder(view); } @Override public void onBindViewHolder(ViewHolder holder… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner … signature, defaults to true for debugging purpose // $mail->DKIM_copyHeaderFields = false; //Optionally you can add extra headers for signing to meet… Create And Install Windows Service Step By Step In C# Programming Web Development by Rabiya_1 … override void OnStop() { LogService("Service Stoped"); timeDelay.Enabled = false; } private void LogService(string content) { FileStream fs = new FileStream(@ "… pass data to another asp page Programming Software Development by Fergus_1 … ID="GridViewMatters" runat="server" AutoGenerateColumns="False" OnRowDataBound="GridViewMatters_RowDataBound"> <Columns> <… Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner … signature, defaults to true for debugging purpose // $mail->DKIM_copyHeaderFields = false; //Optionally you can add extra headers for signing to meet… Re: This is me venting Community Center Meta DaniWeb by jkon … with a concrete answer. Programming is not always true or false , it is what you want to do , how do you… 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 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()); 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.