Skip to content
This repository has been archived by the owner on Aug 15, 2024. It is now read-only.

Update send_notifications.5.x.rb #906

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions quickstart/ruby/sms/example-1/send_notifications.5.x.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)