Update rust #8

Merged
phoenix merged 6 commits from update_rust into main 2026-07-06 23:15:25 -04:00
Showing only changes of commit ac7363cbf2 - Show all commits
+6 -1
View File
@@ -17,7 +17,12 @@ pub async fn send_messages(
schedule_at: None,
};
let mut sendmsg = swoosh::SendMsg::default();
sendmsg.load_config(&config.auth_token, &config.phone_number, &config.service_sid, &config.account_sid);
sendmsg.load_config(
&config.auth_token,
&config.phone_number,
&config.service_sid,
&config.account_sid,
);
sendmsg.load_recipient(&contact.phone_number);
sendmsg.load_message(&message.content);
match sendmsg.send_message(&param).await {