View Source Inbox.Message (Inbox v0.1.1)

Struct for incoming messages.

Summary

Types

@type t() :: %Inbox.Message{
  from: String.t(),
  html: String.t() | nil,
  id: String.t(),
  raw: map(),
  subject: String.t() | nil,
  text: String.t() | nil,
  timestamp: DateTime.t() | nil,
  to: [{String.t(), String.t()}] | nil
}