This Rust library provides a convenient wrapper for the Azure Communications API, making it easy to integrate Azure Communication Services into your Rust projects.
- Easy-to-use interface for Azure Communication Services
- Support for sending SMS messages
- Support for sending emails
Add this to your Cargo.toml
:
[dependencies]
azure-communications = "0.1.1"
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:
- Clone this repository
- Set the required environment variables:
- On Unix-like systems:
export AZURE_COMMUNICATIONS_CONNECTION_STRING="your_connection_string" export SENDER_ADDRESS="[email protected]" export RECIPIENT_ADDRESS="[email protected]"
- On Windows:
set AZURE_COMMUNICATIONS_CONNECTION_STRING=your_connection_string set [email protected] set [email protected]
- On Unix-like systems:
- Run the example:
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: "[email protected]".to_string(),
display_name: Some("Test".to_string()),
}];
let sender_adress = "[email protected]";
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");
- Add support for phone calls