Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
8de33dbf
Commit
8de33dbf
authored
Dec 22, 2014
by
alexpott
Browse files
Issue
#2359457
by JeroenT: Remove drupal_mail()
parent
a8e5ecc4
Changes
3
Hide whitespace changes
Inline
Side-by-side
core/includes/mail.inc
deleted
100644 → 0
View file @
a8e5ecc4
<?php
/**
* @file
* API functions for processing and sending email.
*/
use
Drupal\Core\Mail\MailFormatHelper
;
/**
* Composes and optionally sends an email message.
*
* Sending an email works with defining an email template (subject, text
* and possibly email headers) and the replacement values to use in the
* appropriate places in the template. Processed email templates are
* requested from hook_mail() from the module sending the email. Any module
* can modify the composed email message array using hook_mail_alter(). Finally
* \Drupal::service('plugin.manager.mail')->getInstance()->mail() sends the
* email, which can be reused if the exact same composed email is to be sent to
* multiple recipients.
*
* Finding out what language to send the email with needs some consideration.
* If you send email to a user, her preferred language should be fine, so
* use user_preferred_langcode(). If you send email based on form values
* filled on the page, there are two additional choices if you are not
* sending the email to a user on the site. You can either use the language
* used to generate the page or the site default language. See
* language_default(). The former is good if sending email to the person
* filling the form, the later is good if you send email to an address
* previously set up (like contact addresses in a contact form).
*
* Taking care of always using the proper language is even more important
* when sending emails in a row to multiple users. Hook_mail() abstracts
* whether the mail text comes from an administrator setting or is
* static in the source code. It should also deal with common mail tokens,
* only receiving $params which are unique to the actual email at hand.
*
* An example:
*
* @code
* function example_notify($accounts) {
* foreach ($accounts as $account) {
* $params['account'] = $account;
* // example_mail() will be called based on the first drupal_mail() parameter.
* drupal_mail('example', 'notice', $account->mail, user_preferred_langcode($account), $params);
* }
* }
*
* function example_mail($key, &$message, $params) {
* $data['user'] = $params['account'];
* $options['langcode'] = $message['langcode'];
* user_mail_tokens($variables, $data, $options);
* switch($key) {
* case 'notice':
* // If the recipient can receive such notices by instant-message, do
* // not send by email.
* if (example_im_send($key, $message, $params)) {
* $message['send'] = FALSE;
* break;
* }
* $message['subject'] = t('Notification from !site', $variables, $options);
* $message['body'][] = t("Dear !username\n\nThere is new content available on the site.", $variables, $options);
* break;
* }
* }
* @endcode
*
* Another example, which uses drupal_mail() to format a message for sending
* later:
*
* @code
* $params = array('current_conditions' => $data);
* $to = 'user@example.com';
* $message = drupal_mail('example', 'notice', $to, $langcode, $params, FALSE);
* // Only add to the spool if sending was not canceled.
* if ($message['send']) {
* example_spool_message($message);
* }
* @endcode
*
* @param string $module
* A module name to invoke hook_mail() on. The {$module}_mail() hook will be
* called to complete the $message structure which will already contain common
* defaults.
* @param string $key
* A key to identify the email sent. The final message ID for email altering
* will be {$module}_{$key}.
* @param string $to
* The email address or addresses where the message will be sent to. The
* formatting of this string will be validated with the
* @link http://php.net/manual/filter.filters.validate.php PHP email validation filter. @endlink
* Some examples are:
* - user@example.com
* - user@example.com, anotheruser@example.com
* - User <user@example.com>
* - User <user@example.com>, Another User <anotheruser@example.com>
* @param string $langcode
* Language code to use to compose the email.
* @param array $params
* (optional) Parameters to build the email.
* @param string|null $reply
* Optional email address to be used to answer.
* @param bool $send
* If TRUE, drupal_mail() will call
* \Drupal::service('plugin.manager.mail')->getInstance()->mail() to deliver
* the message, and store the result in $message['result']. Modules
* implementing hook_mail_alter() may cancel sending by setting
* $message['send'] to FALSE.
*
* @return array
* The $message array structure containing all details of the
* message. If already sent ($send = TRUE), then the 'result' element
* will contain the success indicator of the email, failure being already
* written to the watchdog. (Success means nothing more than the message being
* accepted at php-level, which still doesn't guarantee it to be delivered.)
*
* @deprecated in Drupal 8.x-dev, will be removed before Drupal 8.0.
* Use \Drupal::service('plugin.manager.mail')->mail() in procedural code. In
* Object-Oriented code inject the 'plugin.manager.mail' service and use the
* ::mail() method.
*/
function
drupal_mail
(
$module
,
$key
,
$to
,
$langcode
,
$params
=
array
(),
$reply
=
NULL
,
$send
=
TRUE
)
{
return
\
Drupal
::
service
(
'plugin.manager.mail'
)
->
mail
(
$module
,
$key
,
$to
,
$langcode
,
$params
,
$reply
,
$send
);
}
core/lib/Drupal/Core/DrupalKernel.php
View file @
8de33dbf
...
...
@@ -389,7 +389,6 @@ public function boot() {
require_once
$this
->
root
.
'/core/includes/file.inc'
;
require_once
$this
->
root
.
'/core/includes/unicode.inc'
;
require_once
$this
->
root
.
'/core/includes/form.inc'
;
require_once
$this
->
root
.
'/core/includes/mail.inc'
;
require_once
$this
->
root
.
'/core/includes/errors.inc'
;
require_once
$this
->
root
.
'/core/includes/schema.inc'
;
require_once
$this
->
root
.
'/core/includes/entity.inc'
;
...
...
core/modules/system/core.api.php
View file @
8de33dbf
...
...
@@ -1310,7 +1310,6 @@
* @see common.inc
* @see file
* @see format
* @see mail.inc
* @see php_wrappers
* @see sanitization
* @see transliteration
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment