Packages

Plover provides a high-level API for connecting to IMAP servers over implicit TLS, authenticating, managing mailboxes, and fetching/searching/storing messages.

Current section

Files

Jump to
plover lib plover response continuation.ex
Raw

lib/plover/response/continuation.ex

defmodule Plover.Response.Continuation do
@moduledoc """
A continuation request response.
RFC 9051 Section 7.5
"""
defstruct [:text, :base64]
@type t :: %__MODULE__{
text: nil | String.t(),
base64: nil | String.t()
}
end