bladechob Posted March 20, 2007 Share Posted March 20, 2007 Oooh err! I've got a simple form that when you hit the submit button it pops up two irritating ms warnings along the lines of 'This form is being submitted using e-mail... you may continue or cancel this submission' and 'A program is trying to automatically send e-mail on your behalf... If this is unexpected, it may be a virus..." Any ideas please ??? Link to comment https://forums.phpfreaks.com/topic/43448-solved-ms-warnings-on-form-submission/ Share on other sites More sharing options...
mjlogan Posted March 20, 2007 Share Posted March 20, 2007 never seen that before. do you have a url of the form? Link to comment https://forums.phpfreaks.com/topic/43448-solved-ms-warnings-on-form-submission/#findComment-210996 Share on other sites More sharing options...
skali Posted March 20, 2007 Share Posted March 20, 2007 What is the code of form that you are trying to post ?? Link to comment https://forums.phpfreaks.com/topic/43448-solved-ms-warnings-on-form-submission/#findComment-210999 Share on other sites More sharing options...
bladechob Posted March 20, 2007 Author Share Posted March 20, 2007 Hi, URL is www.vividproductions.biz/transconnect/tariff.php Link to comment https://forums.phpfreaks.com/topic/43448-solved-ms-warnings-on-form-submission/#findComment-211002 Share on other sites More sharing options...
skali Posted March 20, 2007 Share Posted March 20, 2007 404 Page not found! Link to comment https://forums.phpfreaks.com/topic/43448-solved-ms-warnings-on-form-submission/#findComment-211004 Share on other sites More sharing options...
bladechob Posted March 20, 2007 Author Share Posted March 20, 2007 whoops dropped the s - sorry about that try this http://www.vividproductions.biz/transconnect/tariffs.php Link to comment https://forums.phpfreaks.com/topic/43448-solved-ms-warnings-on-form-submission/#findComment-211006 Share on other sites More sharing options...
skali Posted March 20, 2007 Share Posted March 20, 2007 onclick="MM_popupMsg('Dependent on your internet security settings you may get a couple of messages pop up saying a programme is trying to send e-mail - ignore these and just continue.')" Â See your form the warning is in your code... Link to comment https://forums.phpfreaks.com/topic/43448-solved-ms-warnings-on-form-submission/#findComment-211007 Share on other sites More sharing options...
skali Posted March 20, 2007 Share Posted March 20, 2007 <form action="mailto:[email protected]?subject=Load alert" method="post" enctype="html"> Â Also your form action is not sending to a php page for processing rather you are using email address which will open form data in email client. Link to comment https://forums.phpfreaks.com/topic/43448-solved-ms-warnings-on-form-submission/#findComment-211009 Share on other sites More sharing options...
bladechob Posted March 20, 2007 Author Share Posted March 20, 2007 I had to put that bit in to reassure the poster that it was not a virus or anything - the warnings that follow it are MS generated Link to comment https://forums.phpfreaks.com/topic/43448-solved-ms-warnings-on-form-submission/#findComment-211010 Share on other sites More sharing options...
bladechob Posted March 20, 2007 Author Share Posted March 20, 2007 Thanks, I see that now - next question what's the simplest way of setting up the php post bit then or should I just use a straightforward htm form. (I'm new to all this you see) Link to comment https://forums.phpfreaks.com/topic/43448-solved-ms-warnings-on-form-submission/#findComment-211011 Share on other sites More sharing options...
skali Posted March 20, 2007 Share Posted March 20, 2007 <form method="post" action="your_php_form_processor.php"> all the field go here </form> Link to comment https://forums.phpfreaks.com/topic/43448-solved-ms-warnings-on-form-submission/#findComment-211017 Share on other sites More sharing options...
bladechob Posted March 20, 2007 Author Share Posted March 20, 2007 Many thanks I'll give that a go Link to comment https://forums.phpfreaks.com/topic/43448-solved-ms-warnings-on-form-submission/#findComment-211020 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.