I've created a form and right after a user completes the form I want to have a copy of it sent to my email and I also want an email sent to them with a link to view the content. Basically to view the content the user has to fill out a form that will send them an email with a link that will take them to the content. Please help. Thank you!
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
In your processor.php file you will find the "mail()" function that sends email to the form user. You can do any number of things. You can just add your email to the "send to" field in the mail function. You can add your name in CC or BCC fields. Last you can copy the mail function and send a separate email to yourself.
As far as sending a link back to form contents it is probably better just to email the contents back to the user otherwise you will have to have separate control over extracting and rebuilding your form with only their specific form data. This is more complicated but certainly not impossible.
Check this link for info on the mail function.
Your original form uses css styles to control many of the form features. You will need to copy the styles used in order to preserve the look of the form, or at least have the same style controls with values that more closely match the look of your new page.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I've created a form and right after a user completes the form I want to have a copy of it sent to my email and I also want an email sent to them with a link to view the content. Basically to view the content the user has to fill out a form that will send them an email with a link that will take them to the content. Please help. Thank you!
In your processor.php file you will find the "mail()" function that sends email to the form user. You can do any number of things. You can just add your email to the "send to" field in the mail function. You can add your name in CC or BCC fields. Last you can copy the mail function and send a separate email to yourself.
As far as sending a link back to form contents it is probably better just to email the contents back to the user otherwise you will have to have separate control over extracting and rebuilding your form with only their specific form data. This is more complicated but certainly not impossible.
Check this link for info on the mail function.
http://php.net/manual/en/function.mail.php
Your original form uses css styles to control many of the form features. You will need to copy the styles used in order to preserve the look of the form, or at least have the same style controls with values that more closely match the look of your new page.