I am new to AngularJS and trying to learn the ropes.
I'm using the following line of code (untested mind you) to send an item of information to a server method that will then send an HTML email containing said item.
$http.post('/EmailItem', item);
My question is, do item's property values go through encodeURIComponent before being sent?
Bonus question: Is there a better way of doing the post? $resource seems on the face of it to be more than what I need...?