form email

tdwrpg

New Member
Messages
2
Reaction score
0
Points
0
How do I get form data emailed to me with using:
<form action="mailto:adsadaf@adsfasdfadsf.asd">
and
mail()
?
 

xav0989

Community Public Relation
Community Support
Messages
4,467
Reaction score
95
Points
0
the mailto: scheme isn't handled by the server. basically, you are asking if the server can use a client-side function, and the answer is no. You need to either use the mailto or php's mail function.
 
Top