Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Classes \Postman\Transports\Queue

joebeeson edited this page Apr 11, 2011 · 2 revisions

The Queue transport accepts an Email object and saves it to the database through the provided model. The returned boolean indicates success as reported from the model.

The object is saved into the provided column by serialization. Be sure that the column is of a sufficient type to accept the object.

Configuration

  • model (Required, string) Name of the model to utilize when saving.
  • column (Optional, string) The column to save the Email object to. Defaults to email.

Notes

Currently there is no mechanism for retrieving the Email (Classes - \Postman\Library\Email) objects out of the database and sending them through another transport, you'll have to write code to accomplish this.

Related