What is the best way to implement a petition? (email send after signing the petition) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T22:33:28Z http://stackoverflow.com/feeds/question/194032 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/194032/what-is-the-best-way-to-implement-a-petition-email-send-after-signing-the-petit 0 What is the best way to implement a petition? (email send after signing the petition) Andrea Ambu 2008-10-11T12:33:06Z 2008-10-21T12:43:55Z <p>I need to build a little webapp but I'm not sure what is the best thing to do.</p> <p>A person that subscribe the petition is signing an email sent to <em>X</em>. This will be also saved to a db in order to show online who subscribed.</p> <p>The idea is to have a standard text message, the user submit his name and that name goes into the message as signature.</p> <p>I could make php send the email with the address of the real sender, or let the user copy and paste the text and let him send the email on his own.</p> <p>I'm not sure of what is the best way to implement it. What will be more "effective", I mean as number of subscribers the solution where the app send the email is easier, but what about the authenticity of the emails? They could be considered not valid if sent all from the same place? </p> http://stackoverflow.com/questions/194032/what-is-the-best-way-to-implement-a-petition-email-send-after-signing-the-petit/194044#194044 0 Answer by Johan for What is the best way to implement a petition? (email send after signing the petition) Johan 2008-10-11T12:50:52Z 2008-10-11T12:50:52Z <p>Let me get this straight - so you want to add to the flood of armchair activism email that is already saturating the world to no good purpose, and you're asking how best to do it? I would read the following before going any further with this:</p> <p><a href="http://www.breakthechain.org/armchair.html" rel="nofollow">http://www.breakthechain.org/armchair.html</a></p> http://stackoverflow.com/questions/194032/what-is-the-best-way-to-implement-a-petition-email-send-after-signing-the-petit/194074#194074 3 Answer by Oli for What is the best way to implement a petition? (email send after signing the petition) Oli 2008-10-11T13:34:21Z 2008-10-11T13:34:21Z <p>Regardless of the whole thing being a "good" idea or not, you want to keep yourself safe. If you spoof the from field, chances are most of your email (especially for domains with SPF records) will not make it through the first level of spam filtering.</p> <p>A SPF (Sender Policy Framework) record lists the only IPs that are allowed to send mails for a domain. If a domain has a SPF record and you poll it, you're supposed to treat anything that didn't originate from a listed server as hazardous waste.</p> <p>Depending on where you're sending these emails, you'll probably end up with your mail server on one or multiple blacklists. That means <em>any</em> email, SPF or not just won't get accepted.</p> <p>So in short:</p> <ul> <li>Get people to send their own email. Provide templates.</li> <li>Consider utilizing the full specs for <code>&lt;a href="mailto:...</code> -- you can put the subject and body in the link, allowing templates to be a one-click affair.</li> <li>You could use Javascript on your site to personalise the message (and therefore <code>mailto:</code> link) while still on your site.</li> </ul>