package async_smtp

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file mail_from_lexer_types.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
open Core

type email =
  { local_part : string
  ; domain : string option
  }
[@@deriving sexp, compare]

type email_with_suffix =
  { prefix : string option
  ; sender : [ `Email of email | `Null ]
  ; suffix : string
  }
[@@deriving sexp, compare]