Crates.io | azure-communications |
lib.rs | azure-communications |
version | 0.1.1 |
source | src |
created_at | 2024-08-25 10:09:27.547829 |
updated_at | 2024-08-28 18:09:34.696011 |
description | API Wrapper for the Azure Communication Services in Rust. |
homepage | https://github.com/AlexanderProd/azure-communications-rust |
repository | https://github.com/AlexanderProd/azure-communications-rust |
max_upload_size | |
id | 1350972 |
size | 54,616 |
This Rust library provides a convenient wrapper for the Azure Communications API, making it easy to integrate Azure Communication Services into your Rust projects.
Add this to your Cargo.toml
:
[dependencies]
azure-communications = "0.1.0"
or run this command in your project directory:
cargo add azure-communications
Make sure to register an account with Azure Communication Services and create a connection string. You can find more information on how to do this here.
To use the example file:
export AZURE_COMMUNICATIONS_CONNECTION_STRING="your_connection_string"
export SENDER_ADDRESS="sender@example.com"
export RECIPIENT_ADDRESS="recipient@example.com"
set AZURE_COMMUNICATIONS_CONNECTION_STRING=your_connection_string
set SENDER_ADDRESS=sender@example.com
set RECIPIENT_ADDRESS=recipient@example.com
cargo run --example email
The program will attempt to send an email using the Azure Communications Service.
The send_mail
method requires a sender address, a subject, an optional body, an optional HTML body, and a list of recipients. The sender address must be a valid email address and must be registered in the Azure Communication Services portal. More information can be found in the official documentation.
The recipient list must contain at least one recipient, and each recipient must have a valid email address, as well as an optional display name.
use azure_communication::{AzureCommunicationsClient, types::Recipient};
let az_communications = AzureCommunicationService::new(&connection_string, None);
let recipients = vec![Recipient {
address: "test@test.de".to_string(),
display_name: Some("Test".to_string()),
}];
let sender_adress = "sender@mail.com";
az_communications
.send_mail(
&sender_adress,
"Hello from Azure Communications",
Some("Hello!"),
None,
recipients,
)
.await
.expect("Error sending email");
The sender_name
argument provided to the send_sms
method can be either the string of a E.164 formatted phone number or a string of up to 11 alphanumeric characters. The sender phone number needs to be registered in the Azure Communication Services portal. Check the official documentation for more information.
use azure_communication::AzureCommunicationsClient;
let az_communications = AzureCommunicationService::new(&connection_string, None);
az_communications
.send_sms("SampleCoLtd", "Hello from Azure Communications", vec!["+1234567890"])
.await
.expect("Error sending SMS");