1

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.

  • 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 Answers1

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