xsuchy09/nette-eml-response

v1.0.1 2020-10-05 07:27 UTC

This package is auto-updated.

Last update: 2024-09-05 16:10:35 UTC


README

Nette 的 EmlResponse。

安装

composer require xsuchy09/nette-eml-response

用法

class SomePresenter extends BasePresenter
{
	public function actionDefault()
	{
		$emlData = file_get_contents('mail.eml');

		$response = new \xsuchy09\Application\Responses\EmlResponse($emlData, 'download.eml');
		$this->sendResponse($response);
	}
}