You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
subject = 'SMS from ' + params['from'] + ' sent to ' + params['to']
content = Content.new(type: 'text/plain', value: 'An sms from '+params['to'] + ' has been recieved with the following message > "' + params['body'] + '"')
mail = Mail.new(from, subject, to, content)
sg = SendGrid::API.new(api_key: 'sendgrid token in here')