I have a form created by Mailchimp (email campaign service) that allows users to subscribe to a newsletter. I want to send an email of the form contents after form submit AND post the original form action.
Ive used the php mail() function to do this taken from this link, and it worked fine: Send email with PHP from html form on submit with the same script
But I do not know how to submit the original post action from my subscription form:
<form action="http://mailchimpurl.com/subscribe/post" method="POST">
Again, I want to send an email of the form contents AND also have the subscription post request sent.
Thanks for the help!