Struct EmailRecipients

Struct Documentation

struct EmailRecipients

Recipients of an email.

Public Functions

inline EmailRecipients(const std::vector<std::string> &to_, const std::vector<std::string> &cc_, const std::vector<std::string> &bcc_)

Default constructor.

inline explicit EmailRecipients(const std::string &to_)

Constructor with only a single “to” email.

EmailRecipients(const EmailRecipients&) = default

Copy constructor.

Public Members

std::vector<std::string> to

The “to” emails.

std::vector<std::string> cc

The “cc” emails.

std::vector<std::string> bcc

The “bcc” emails.