Add clarifying text to fix #1558

Andrew Cantino 8 gadi atpakaļ
vecāks
revīzija
8aef73e253
1 mainītis faili ar 2 papildinājumiem un 1 dzēšanām
  1. 2 1
      app/models/agents/email_agent.rb

+ 2 - 1
app/models/agents/email_agent.rb

@@ -16,7 +16,8 @@ module Agents
16 16
 
17 17
       You can customize the email body by including the optional `body` param.  Like the `subject`, the `body` can be a simple message
18 18
       or a Liquid template.  You could send only the Event's `some_text` field with a `body` set to `{{ some_text }}`.
19
-      The body can contain simple HTML and will be sanitized.
19
+      The body can contain simple HTML and will be sanitized. Note that when using `body`, it will be wrapped with `<html>` and `<body>` tags,
20
+      so you do not need to add these yourself.
20 21
 
21 22
       You can specify one or more `recipients` for the email, or skip the option in order to send the email to your
22 23
       account's default email address.