Guest User

Untitled

a guest
Apr 20th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 KB | None | 0 0
  1. require 'rubygems'
  2. require 'hello_sign'
  3.  
  4. client = HelloSign::Client.new :api_key => '7c10d46c650b1d89be69ed2a61224fcc3c90000149b203d7696b67cf8a9c6af9'
  5. client.send_signature_request(
  6. :test_mode => 1,
  7. :title => 'NDA with Acme Co.',
  8. :subject => 'The NDA we talked about',
  9. :message => 'Please sign this NDA and then we can discuss more. Let me know if you have any
  10. questions.',
  11. :signers => [
  12. {
  13. :email_address => 'alex.mcferron@hellosign.com',
  14. :name => 'Alex McFerron'
  15.  
  16. }
  17.  
  18. ],
  19. :files => ['NDA.pdf']
  20. )
  21.  
  22. client2 = HelloSign::Client.new :api_key => '7c10d46c650b1d89be69ed2a61224fcc3c90000149b203d7696b67cf8a9c6af9'
  23. client.send_signature_request(
  24. :test_mode => 1,
  25. :title => 'NDA with Acme Co.',
  26. :subject => 'The NDA we talked about',
  27. :message => 'Please sign this NDA and then we can discuss more. Let me know if you have any
  28. questions.',
  29. :signers => [
  30. {
  31. :email_address => 'alex@hellosign.com',
  32. :name => 'Alex Griffen'
  33.  
  34. }
  35.  
  36. ],
  37. :files => ['NDA.pdf']
  38. )
  39.  
  40. client3 = HelloSign::Client.new :api_key => '7c10d46c650b1d89be69ed2a61224fcc3c90000149b203d7696b67cf8a9c6af9'
  41. client.send_signature_request(
  42. :test_mode => 1,
  43. :title => 'NDA with Acme Co.',
  44. :subject => 'The NDA we talked about',
  45. :message => 'Please sign this NDA and then we can discuss more. Let me know if you have any
  46. questions.',
  47. :signers => [
  48. {
  49. :email_address => 'jen.young@hellosign.com',
  50. :name => 'Jen Young'
  51.  
  52. }
  53.  
  54. ],
  55. :files => ['NDA.pdf']
  56. )
  57.  
  58. client4 = HelloSign::Client.new :api_key => '7c10d46c650b1d89be69ed2a61224fcc3c90000149b203d7696b67cf8a9c6af9'
  59. client.send_signature_request(
  60. :test_mode => 1,
  61. :title => 'NDA with Acme Co.',
  62. :subject => 'The NDA we talked about',
  63. :message => 'Please sign this NDA and then we can discuss more. Let me know if you have any
  64. questions.',
  65. :signers => [
  66. {
  67. :email_address => 'nicholas.boutte@hellosign.com',
  68. :name => 'Nicholas Boutte'
  69.  
  70. }
  71.  
  72. ],
  73. :files => ['NDA.pdf']
  74. )
Add Comment
Please, Sign In to add comment