Skip to content

Instantly share code, notes, and snippets.

@mbuttler
Created August 10, 2015 13:55
Show Gist options
  • Save mbuttler/eadb7a91bd5658682350 to your computer and use it in GitHub Desktop.
Save mbuttler/eadb7a91bd5658682350 to your computer and use it in GitHub Desktop.
outbox - emails.js
app.factory('email', ['$http', function($http) {
return $http.get('https://s3.amazonaws.com/codecademy-content/courses/ltp4/emails-api/emails.json')
.success(function(data) {
return data;
})
.error(function(err) {
return err;
});
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment