remo / fetch-service-provider
Tedivm/Fetch 集成到 Silex。
dev-master
2013-11-28 16:48 UTC
Requires
- tedivm/fetch: ~0.4
This package is not auto-updated.
Last update: 2024-09-24 04:54:38 UTC
README
封装 Tedivm/Fetch 的服务提供商,以便在 Silex 中使用其功能。
示例用法
// set configuration
$app['fetch.options'] = array(
'host' => 'localhost',
'user' => 'root',
'password' => ''
);
$app->register(new Tedivm\Fetch\FetchServiceProvider());
$mail = $app['fetch'];
$messages = $mail->getMessages();