# Add these lines to server .env to enable real SMS OTP # ====================================================== # Driver: 'msg91' for production, 'log' for dev (no SMS sent, logs OTP to laravel.log) SMS_DRIVER=msg91 # MSG91 Credentials (sign up at https://msg91.com) # 1. Get Auth Key from MSG91 dashboard → Settings → API # 2. Create a DLT-approved OTP template in MSG91 → Flows → OTP # Example template: "Your PM-WANI OTP is ##OTP##. Valid for 10 minutes. Do not share." # 3. Register DLT with TRAI (1-2 weeks) — MSG91 walks you through it MSG91_AUTH_KEY=your_msg91_auth_key_here MSG91_TEMPLATE_ID=your_dlt_template_id_here MSG91_SENDER_ID=WANIAP # optional, DLT-approved sender name # Only set this TRUE in development — exposes OTP in API response DEV_OTP_IN_RESPONSE=false