Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

[Mailer] Added OhMySMTP Bridge #42710

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 13 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixed underline in changelog, added final to class, renamed package t…
…o oh-my-smtp-mailer,
  • Loading branch information
paul-oms committed Aug 26, 2021
commit cda397c927947ead99322e08679b559f56be3f0e
2 changes: 1 addition & 1 deletion 2 src/Symfony/Component/Mailer/Bridge/OhMySmtp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ CHANGELOG
=========

5.4
-----
---------
paul-oms marked this conversation as resolved.
Show resolved Hide resolved

* Add the bridge
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
use Symfony\Component\Mime\Email;
use Symfony\Contracts\HttpClient\ResponseInterface;

class OhMySmtpApiTransportTest extends TestCase
final class OhMySmtpApiTransportTest extends TestCase
{
/**
* @dataProvider getTransportData
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
use Symfony\Component\Mailer\Header\TagHeader;
use Symfony\Component\Mime\Email;

class OhMySmtpSmtpTransportTest extends TestCase
final class OhMySmtpSmtpTransportTest extends TestCase
{
public function testCustomHeader()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
use Symfony\Component\Mailer\Transport\Dsn;
use Symfony\Component\Mailer\Transport\TransportFactoryInterface;

class OhMySmtpTransportFactoryTest extends TransportFactoryTestCase
final class OhMySmtpTransportFactoryTest extends TransportFactoryTestCase
{
public function getFactory(): TransportFactoryInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
/**
* @author Paul Oms <support@ohmysmtp.com>
*/
class OhMySmtpApiTransport extends AbstractApiTransport
final class OhMySmtpApiTransport extends AbstractApiTransport
{
private const HOST = 'app.ohmysmtp.com/api/v1';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
/**
* @author Paul Oms <support@ohmysmtp.com>
*/
class OhMySmtpSmtpTransport extends EsmtpTransport
final class OhMySmtpSmtpTransport extends EsmtpTransport
{
public function __construct(string $id, EventDispatcherInterface $dispatcher = null, LoggerInterface $logger = null)
{
Expand Down
2 changes: 1 addition & 1 deletion 2 src/Symfony/Component/Mailer/Bridge/OhMySmtp/composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "symfony/ohmysmtp-mailer",
"name": "symfony/oh-my-smtp-mailer",
"type": "symfony-bridge",
"description": "Symfony OhMySMTP Mailer Bridge",
"keywords": [],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class UnsupportedSchemeException extends LogicException
],
'ohmysmtp' => [
'class' => Bridge\OhMySmtp\Transport\OhMySmtpTransportFactory::class,
'package' => 'symfony/ohmysmtp-mailer',
'package' => 'symfony/oh-my-smtp-mailer',
],
];

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public function messageWhereSchemeIsPartOfSchemeToPackageMapProvider(): \Generat
yield ['postmark', 'symfony/postmark-mailer'];
yield ['sendgrid', 'symfony/sendgrid-mailer'];
yield ['sendinblue', 'symfony/sendinblue-mailer'];
yield ['ohmysmtp', 'symfony/ohmysmtp-mailer'];
yield ['ohmysmtp', 'symfony/oh-my-smtp-mailer'];
yield ['ses', 'symfony/amazon-mailer'];
}

Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.