help me with this code again? 2 comments
===quoted text=== please help me, i would like to add a “enter your first name” ; enter your family name”; i would like to enter that to my form, im not really familar with this and the php thing so i decided to put it in html, and P.S the submit button i would like it to be redirected to my mail, is the script correct? any help would be greatly appreciated… onsubmit="window.open(’http://mydomain... ‘popupwindow’,
’scrollbars=yes,width=550,height=520′)... true">
Enter your email address:
style="width:140px" name="email"/>name="loc" value="en_US"/>
Delivered by target="_blank">mydomain
===quoted txt===
===reply from —>Cm====
===reply from —>Cm====
thanks for the help so far,,
but can you please show where can i put the tag i mean my email add? so that the submit query will automatically sent to my email.. =)
i would to put der my autoresponder mail..
im still confused though.. =p
and that action”mailto:” where exactly will i insert them to the html. sorry, im still noob on this one.
Autoresponder related posts:
2 Responses to 'help me with this code again?'
Subscribe to comments with RSS or TrackBack to 'help me with this code again?'.
-
easy.squirt
22 Mar 10 at 7:56 pm
-
The other guy almost had it too. The HTML is messy, put closing tags on all of the lines like the following:
this should be like the following:
note the />
-Billy
Future Sailor
26 Mar 10 at 3:58 am
You almost got it. The action target should be like this
action=”mailto:myEmail@myDomain.com”
Be careful when using this method as it does not filter anything and you may get a lot of junk emails. I suggest that you use the proper way to implement a contact form via PHP. You will be able to control all user inputs and make sure that everything is valid before sending the email.