response | R Documentation |
Add In-Reply-To and References header fields
inreplyto(msg, msgid, subject_prefix = "Re: ")
references(msg, msgid, subject_prefix = "Re: ")
msg |
A message object. |
msgid |
A message ID. This would be the contents of the |
subject_prefix |
Prefix to add to subject. If specified will be prepended
onto the |
A message object.
envelope() %>% inreplyto("<6163c08e.1c69fb81.65b78.183c@mx.google.com>")
# Now for German.
envelope() %>%
inreplyto("6163c08e.1c69fb81.65b78.183c@mx.google.com", "AW: ")
# And also for Danish, Norwegian and Swedish (but not Finnish!).
envelope() %>%
references("6163c08e.1c69fb81.65b78.183c@mx.google.com", "SV: ")
# Can reference multiple messages.
envelope() %>%
references(c(
"6163c08e.1c69fb81.65b78.183c@mx.google.com",
"e8e338ff-a05c-4c0f-99f2-0dc8fb72682f@mail.gmail.com"
))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.