diff --git a/quickstart/ruby/sms/example-1/send_notifications.5.x.rb b/quickstart/ruby/sms/example-1/send_notifications.5.x.rb index 9148214903..b9c8520506 100644 --- a/quickstart/ruby/sms/example-1/send_notifications.5.x.rb +++ b/quickstart/ruby/sms/example-1/send_notifications.5.x.rb @@ -3,14 +3,14 @@ # To set up environmental variables, see http://twil.io/secure account_sid = ENV['TWILIO_ACCOUNT_SID'] -auth_token = 'yyyyyyyyyyyyyyyyyyyyyyyyy' +auth_token = '23d7b2c6345ff4626faa029c56e13dea' client = Twilio::REST::Client.new(account_sid, auth_token) -from = '+15551234567' # Your Twilio number -to = '+15555555555' # Your mobile phone number +from = '+18316618357' # Your Twilio number +to = '+5511991016261' # Your mobile phone number client.messages.create( from: from, to: to, -body: "Hey friend!" +body: "Hey friend! Its a test, smile" )