Update dependencies #30

Merged
phoenix merged 5 commits from update_dependencies into main 2026-07-04 21:07:30 -04:00
Showing only changes of commit bef776ba6c - Show all commits
+11 -5
View File
@@ -100,12 +100,18 @@ pub mod endpoint {
schedule_at: None,
};
let mut sendmsg = swoosh::SendMsg::default();
sendmsg.load_config(
&t_config.auth_token,
&t_config.phone_number,
&t_config.service_sid,
&t_config.account_sid,
);
for contact in &contacts {
match swoosh::twilio::api::send_message(
&message, contact, &pp, &t_config,
)
.await
{
sendmsg.load_message(&message.content);
sendmsg.load_recipient(&contact.phone_number);
match sendmsg.send_message(&pp).await {
Ok(result) => {
let val = swoosh::twilio::api::response_to_json(result).await;
let mer = textsender_models::message::event::MessageEventResponse {