Spaces:
Sleeping
Sleeping
File size: 354 Bytes
b407a42 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
from twilio.rest import Client
from app.core.config import settings
def send_sms_otp(phone: str, otp: str) -> str:
client = Client(settings.TWILIO_ACCOUNT_SID, settings.TWILIO_AUTH_TOKEN)
message = client.messages.create(
from_=settings.TWILIO_SMS_FROM,
body=f"Your OTP is {otp}",
to=phone
)
return message.sid |