# File lib/sms_on_rails/model_support/outbound.rb, line 65
        def create_with_phone(attributes, draft=nil)
          outbound = new(attributes)
          transaction {
            outbound.assign_existing_phone
            outbound.draft = draft
            outbound.save
          }
          outbound
        end