xsuchy09/nette-eml-response

Nette EML Response

Maintainers

Package info

github.com/xsuchy09/nette-eml-response

pkg:composer/xsuchy09/nette-eml-response

Statistics

Installs: 19

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

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

This package is auto-updated.

Last update: 2026-03-05 19:38:16 UTC


README

EmlResponse for Nette.

Install

composer require xsuchy09/nette-eml-response

Usage

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);
	}
}