Message::bcc()

$this bcc(string|array $address, string|null $name = null) Add a blind carbon copy to the message. Parameters string|array $address string|null $name Return Value $this

Message::attachData()

$this attachData(string $data, string $name, array $options = array()) Attach in-memory data as an attachment. Parameters string $data string $name array $options Return Value $this

Message::attach()

$this attach(string $file, array $options = array()) Attach a file to the message. Parameters string $file array $options Return Value $this

Message

Message class Message (View source) Methods void __construct(Swift_Message $swift) Create a new message instance. $this from(string|array $address, string|null $name = null) Add a "from" address to the message. $this sender(string|array $address, string|null $name = null) Set the "sender" of the message. $this returnPath(string $address) Set the "return path" of the message. $this to(string|array $address, string|null $name = null, bool $override = false) Add a recipie

MemcachedStore::__construct()

void __construct(Memcached $memcached, string $prefix = '') Create a new Memcached store. Parameters Memcached $memcached string $prefix Return Value void

MemcachedStore::tags()

TaggedCache tags(array|mixed $names) Begin executing a new tags operation. Parameters array|mixed $names Return Value TaggedCache

MemcachedStore::setPrefix()

void setPrefix(string $prefix) Set the cache key prefix. Parameters string $prefix Return Value void

MemcachedStore::putMany()

void putMany(array $values, float|int $minutes) Store multiple items in the cache for a given number of minutes. Parameters array $values float|int $minutes Return Value void

MemcachedStore::put()

void put(string $key, mixed $value, float|int $minutes) Store an item in the cache for a given number of minutes. Parameters string $key mixed $value float|int $minutes Return Value void

MemcachedStore::many()

array many(array $keys) Retrieve multiple items from the cache by key. Items not found in the cache will have a null value. Parameters array $keys Return Value array