I am starting in the Web development and I would like to know how to send HTML forms to the email that is selected, already indicated me PHPMailer but I searched knew and did not understand very well.
Asked
Active
Viewed 47 times
1
-
Possible duplicate of [How to create an email form that can send email using html](https://stackoverflow.com/questions/8239782/how-to-create-an-email-form-that-can-send-email-using-html) – frido Aug 13 '19 at 18:00
1 Answers
0
Are you just trying to send form information to an email address? If so you probably don't need something like phpMailer but rather just include a mailto: action in the form tag. (example) It really depends on what exactly you're trying to do the form data you're collecting.

amanhasnoname
- 236
- 1
- 4
- 16
-
Thats it , im trying to send form information to email. How to use mailto? Send example in a code pls. – João Emerson Aug 13 '19 at 17:57
-
click on the example link and it will bring you to an interactive page that had a good demonstration of mailto: – amanhasnoname Aug 13 '19 at 18:47
-
1
-