Verified Commit 758cc0ec authored by Dave Long's avatar Dave Long
Browse files

Issue #3051548 by Rkumar, quietone, Balu Ertl, nitesh624, lauriii, pandaski,...

Issue #3051548 by Rkumar, quietone, Balu Ertl, nitesh624, lauriii, pandaski, alexpott: Fix spelling of "email"
parent 58233075
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -47,6 +47,7 @@
      { "name": "drupal", "path": "./misc/cspell/dictionary.txt"}
    ],
    "flagWords": [
      "e-mail",
      "grey",
      "hte",
      "please"
+1 −1
Original line number Diff line number Diff line
@@ -452,7 +452,7 @@ public static function escape($text): string {
   * transformed and should generally be avoided.
   *
   * Necessary for HTML that is served outside of a website, for example, RSS
   * and e-mail.
   * and email.
   *
   * @param string $html
   *   The partial (X)HTML snippet to load. Invalid markup will be corrected on
+1 −1
Original line number Diff line number Diff line
@@ -172,7 +172,7 @@ public function getInstance(array $options) {
   */
  public function mail($module, $key, $to, $langcode, $params = [], $reply = NULL, $send = TRUE) {
    // Mailing can invoke rendering (e.g., generating URLs, replacing tokens),
    // but e-mails are not HTTP responses: they're not cached, they don't have
    // but emails are not HTTP responses: they're not cached, they don't have
    // attachments. Therefore we perform mailing inside its own render context,
    // to ensure it doesn't leak into the render context for the HTTP response
    // to the current request.
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ related:
<h2>{% trans %}What are simple actions?{% endtrans %}</h2>
<p>{% trans %}Simple actions do not require configuration. They are automatically available to be executed, and are always listed as available on the {{ actions_page }}.{% endtrans %}</p>
<h2>{% trans %}What are advanced actions?{% endtrans %}</h2>
<p>{% trans %}Advanced actions require configuration. Before they are available for listing and execution, they need to be created and configured. For example, for an action that sends e-mail, you would need to configure the e-mail address.{% endtrans %}</p>
<p>{% trans %}Advanced actions require configuration. Before they are available for listing and execution, they need to be created and configured. For example, for an action that sends email, you would need to configure the email address.{% endtrans %}</p>
<h2>{% trans %}How are actions executed?{% endtrans %}</h2>
<p>{% trans %}In the core software, actions can be executed through a <em>bulk operations form</em> added to a view; if you have the core Views module installed, see the related topic "Managing content listings (views)" for more information about views and bulk operations.{% endtrans %}</p>
<h2>{% trans %}Configuring actions overview{% endtrans %}</h2>
+1 −1
Original line number Diff line number Diff line
@@ -123,7 +123,7 @@ public function sendMailMessages(MessageInterface $message, AccountInterface $se
      // User contact forms do not support an auto-reply message, so this
      // message always originates from the site.
      if (!$sender_cloned->getEmail()) {
        $this->logger->error('Error sending auto-reply, missing sender e-mail address in %contact_form', [
        $this->logger->error('Error sending auto-reply, missing sender email address in %contact_form', [
          '%contact_form' => $contact_form->label(),
        ]);
      }
Loading