Usage:
# RubyMotion:
# In your rakefile:
app.vendor_project("vendor/MailMan", :static, :cflags => '-fobjc-arc')
# In your View Controller:
@mailman ||= MailMan.alloc.initWithParentVC(WeakRef.new(self))
@mailman.emailWithSubject('Subject', andText: 'body')
mailman = [[MailMan alloc] initWithParentVC:self];
[mailman emailWithSubject:'Subject' andText: 'body'];