bookmyservice-ums / app /utils /sms_utils.py
MukeshKapoor25's picture
Refactor OTP handling to continue with email fallback on SMS failure; add timeout parameter to email OTP function and improve SMS client initialization
9e0fc4a
raw
history blame contribute delete
500 Bytes
from twilio.rest import Client
from twilio.http.http_client import TwilioHttpClient
from app.core.config import settings
def send_sms_otp(phone: str, otp: str) -> str:
http_client = TwilioHttpClient(timeout=10) # 10 seconds timeout
client = Client(settings.TWILIO_ACCOUNT_SID, settings.TWILIO_AUTH_TOKEN, http_client=http_client)
message = client.messages.create(
from_=settings.TWILIO_SMS_FROM,
body=f"Your OTP is {otp}",
to=phone
)
return message.sid