In direct response to this comment:
(Jun 14th, 2011, 2:13 PM)kvcrawford Wrote: How about a module for integration with mailing service providers like http://mailchimp.com or http://campaignmonitor.com? That would be easier to implement than your own mass-mailer module, and would be significantly better for ensuring your server's installation of FormTools doesn't get blacklisted as a spammer. As I said before, it is very much advisable to use a service if you're going to send out e-mail newsletters.
Cheers,
Kevin
I just signed up for MailChimp as I, too, would like my existing form to both do it's current function as well as submit a list subscription to my MailChimp account.
My question: Is there a way using an HTML form to have two action attributes? Or two actions in one attribute?
For example: <form action="form_action.asp" action="form_action2.asp" method="post">
Or: <form action="form_action.asp, form_action2.asp" method="get">
The one stipulation I would have... NO JAVASCRIPT. I know there are a few ways to get this done with JavaScript, but I'd rather not go that route if AT ALL possible. I'm thinking, maybe the form submits to FT, then FT resubmits the form to another action. It certainly sounds feasible, but I don't know how...
The current form tag I am using is:
Code:
<form action="<?php echo $_SERVER["PHP_SELF"]?>" method="post">
I also need the same form to do the following:
Code:
<form action="http://someurl.com/formaction" method="post">
If someone gets me an answer that tests out and works, I'd be happy to post a tutorial of how to integrate FormTools with MailChimp.