mailjet_api_wrapper 0.5.1

Unofficial wrapper for Mailjet's API
Documentation
// This file is part of rust-mailjet <https://github.com/nevermille/rust-mailjet>
// Copyright (C) 2023 Camille Nevermind
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 3 of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with this program; if not, write to the Free Software Foundation,
// Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.

/// An email attachment
mod attachment;
/// A contact information
mod contact;
/// The contact identifier
mod contact_identifier;
/// A contact list information
mod contacts_list;
/// The contact list identifier
mod contacts_list_identifier;
/// An email address
mod email_address;
/// An email
mod message;
/// An email information
mod message_data;
/// One step of an email's history
mod message_history_data;
/// A message infomation
mod message_information_data;
/// A sending error
mod response_error;
/// The status of an email sending
mod response_message;
/// A successfully sent email
mod response_success;

pub use attachment::Attachment;
pub use contact::Contact;
pub use contact_identifier::ContactIdentifier;
pub use contacts_list::ContactsList;
pub use contacts_list_identifier::ContactsListIdentifier;
pub use email_address::EmailAddress;
pub use message::Message;
pub use message_data::MessageData;
pub use message_history_data::MessageHistoryData;
pub use message_information_data::MessageInformationData;
pub use response_error::ResponseError;
pub use response_message::ResponseMessage;
pub use response_success::ResponseSuccess;