Skip to content

Removed Mailer component docs #13945

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

Merged
merged 1 commit into from
Aug 3, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 2 additions & 1 deletion _build/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,8 @@
'rst': 'reStructuredText',
'varnish2': 'Varnish 2',
'varnish3': 'Varnish 3',
'varnish4': 'Varnish 4'
'varnish4': 'Varnish 4',
'env': '.env'
}

# don't enable Sphinx Domains
Expand Down
1 change: 1 addition & 0 deletions _build/redirection_map
Original file line number Diff line number Diff line change
Expand Up @@ -505,3 +505,4 @@
/components/class_loader https://github.com/symfony/class-loader
/frontend/encore/versus-assetic /frontend
/components/http_client /http_client
/components/mailer /mailer
206 changes: 0 additions & 206 deletions components/mailer.rst

This file was deleted.

2 changes: 1 addition & 1 deletion components/messenger.rst
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ Your own Sender
Imagine that you already have an ``ImportantAction`` message going through the
message bus and being handled by a handler. Now, you also want to send this
message as an email (using the :doc:`Mime </components/mime>` and
:doc:`Mailer </components/mailer>` components).
:doc:`Mailer </mailer>` components).

Using the :class:`Symfony\\Component\\Messenger\\Transport\\Sender\\SenderInterface`,
you can create your own message sender::
Expand Down
6 changes: 1 addition & 5 deletions components/mime.rst
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,7 @@ methods to compose the entire email message::
;

This only purpose of this component is to create the email messages. Use the
:doc:`Mailer component </components/mailer>` to actually send them. In Symfony
applications, it's easier to use the :doc:`Mailer integration </mailer>`.

Most of the details about how to create Email objects, including Twig integration,
can be found in the :doc:`Mailer documentation </mailer>`.
:doc:`Mailer component </mailer>` to actually send them.

Twig Integration
----------------
Expand Down
Loading