[][src]Struct sendgrid_api::SendGrid

pub struct SendGrid { /* fields omitted */ }

Entrypoint for interacting with the SendGrid API.

Implementations

impl SendGrid[src]

pub fn new<K>(key: K) -> Self where
    K: ToString
[src]

Create a new SendGrid client struct. It takes a type that can convert into an &str (String or Vec<u8> for example). As long as the function is given a valid API Key your requests will work.

pub fn new_from_env() -> Self[src]

Create a new SendGrid client struct from environment variables. It takes a type that can convert into an &str (String or Vec<u8> for example). As long as the function is given a valid API Key your requests will work.

pub fn get_key(&self) -> &str[src]

Get the currently set API key.

pub async fn send_raw_mail<'_>(&'_ self, message: Message)[src]

Create a sendgrid message struct and send it.

pub async fn send_mail<'_>(
    &'_ self,
    subject: String,
    message: String,
    to: Vec<String>,
    cc: Vec<String>,
    bcc: Vec<String>,
    from: String
)
[src]

Send an email.

This is a nicer experience than using send_raw_mail.

Auto Trait Implementations

impl !RefUnwindSafe for SendGrid

impl !Send for SendGrid

impl !Sync for SendGrid

impl Unpin for SendGrid

impl !UnwindSafe for SendGrid

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.