Delete All Emails in a Highrise App - Stack Overflow most recent 30 from stackoverflow.com2009-11-25T11:03:17Zhttp://stackoverflow.com/feeds/question/359770http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/359770/delete-all-emails-in-a-highrise-app1Delete All Emails in a Highrise AppJoseph Holsten2008-12-11T15:43:59Z2008-12-11T15:46:35Z
<p>How do I delete all the emails in my <a href="http://highrisehq.com/" rel="nofollow">highrise</a> app? I don't want to delete the entire thing and start over, I've got companies and tags and metadata. What's the easiest way?</p>
<p>This question paraphrased from <a href="http://getsatisfaction.com/people/tiborholoda" rel="nofollow">Tibor Holoda</a>'s <a href="http://getsatisfaction.com/37signals/topics/can_you_help_me_deleting_all_emails_and_start_again_please" rel="nofollow">question</a> on <a href="http://getsatisfaction.com" rel="nofollow">GetSatisfaction</a></p>
http://stackoverflow.com/questions/359770/delete-all-emails-in-a-highrise-app/359783#3597831Answer by Joseph Holsten for Delete All Emails in a Highrise AppJoseph Holsten2008-12-11T15:46:35Z2008-12-11T15:46:35Z<p>It looks like this is available through the <a href="http://developer.37signals.com/highrise" rel="nofollow">API</a>, and should be easy with the <a href="http://developer.37signals.com/highrise/highrise.rb" rel="nofollow">ruby bindings</a>:</p>
<pre><code>#!/usr/bin/env ruby
ENV['SITE'] = "http://passkey:X@my.hirisehq.com"
require 'highrise'
Highrise::Person.each do |person|
person.emails.each {|email|
email.destroy
}
end
</code></pre>