This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# your Twilio authentication credentials | |
ACCOUNT_SID = 'XXXXXXXXXXXXXXXXXXXXXXXXXXXX' | |
ACCOUNT_TOKEN = 'YYYYYYYYYYYYYYYYYYYYYYYYYYYY' | |
# version of the Twilio REST API to use | |
API_VERSION = '2010-04-01' | |
# base URL of this application | |
BASE_URL = "localhost:3000" #production ex: "http://appname.heroku.com/callme" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
xml.instruct! | |
xml.Response do | |
xml.Say "Your appointment is located in a building near a road." | |
xml.Redirect @redirectto | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
xml.instruct! | |
xml.Response do | |
xml.Say "Good bye." | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
xml.instruct! | |
xml.Response do | |
xml.Gather(:action => @postto, :numDigits => 1) do | |
xml.Say "Hello. The Twilio API is pretty awesome." | |
xml.Say "Please press 1 to repeat this menu. Press 2 for directions. Or press 3 if you are done." | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1>Twilio API demo</h1> | |
<h2 style="color: #ff0000"><%= params['msg'] %></h2> | |
<h3>Enter your phone number</h3> | |
<form action="/callme/makecall" method="post"> | |
<input type="text" name="number" /> | |
<input type="submit" value="Call me!"> | |
</form> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Callme::Application.routes.draw do | |
match ':controller(/:action(.:format))' | |
match ':controller(/:action(/:id(.:format)))' | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
avariable = PDFKit.new(File.read("#{Rails.root}/tmp/somepage.html")) | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class NewMailer < ActionMailer::Base | |
default :from => "[email protected]" | |
require "net/http" | |
def registration_confirmation(person, thepage, email) | |
@person = person #Mailers are similar to Controllers as instance variables are passed to the View layer | |
@thepage = thepage | |
attachments["rails.png"] = File.read("#{Rails.root}/public/images/rails.png") #Used to test attachments, remove in production | |
attachments["#{thepage.id}.pdf"] = {:content => email } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ThepagesController < ApplicationController | |
#Gertig Mailer Method | |
def mailit | |
#Used to send an email to user when they are created | |
#To make this action RESTful you should add the following to your routes.rb file (uncommented of course) | |
#resources :thepages do | |
# member do |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p id="notice"><%= notice %></p> | |
<p id="show_item"><%= link_to "Email This Page to User", mailit_thepage_path(@thepage) %></p> | |
<p id="show_item"><%= link_to "Download This Page as a PDF", thepage_path(@thepage, :format => "pdf")%></p> | |
<p id="show_item"> | |
<b>Person's Name:</b> | |
<%= Person.find(@thepage.person_id).name %> | |
</p> |
OlderNewer