Reputation: 970
I have a html form. In this form I have 3 input: "name", "mobile" and "email", with a submit button.
In this form I use mailchimp and form inputs send to mailchimp.
I can do this 2 case separate, but I can not do together. because form can not have 2 action.
How I can solve this problem?
so tnx :)
Upvotes: 1
Views: 260
Reputation: 55720
Have your form post to an intermediate PHP script. That script would then subsequently POST to mail chimp, and then execute another post to your SMS gateway using something like cURL.
Upvotes: 3