<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
proklung / core-framework-extension-bundle example snippets
return [
new ExampleCommand(), // Должен наследоваться от \Symfony\Component\Console\Command\Command
container()->get('console.command.about') // Из глобального контейнера
];
use Symfony\Component\Mime\Email;
$email = (new Email())
->from('[email protected]')
->to('[email protected]')
->subject('Time for Symfony Mailer!')
->text('Sending emails is fun again!')
->html('<p>See Twig integration for better HTML integration!</p>');
/** @var \Symfony\Component\Mailer\Transport\TransportInterface $factory */
$factory = container()->get('custom_mailer_transports.filesystem');
$factory->send($email);