I know this has been answered to some degree elsewhere but nothing I tried seemed to do the trick. I have never used jQuery for this (I always had something like Angular's $http to handle this) but I'm getting an Object Object where it should spit out the email info. I've included the code below.
var email = $("#email").val();
$.post("http://httpbin.org/post", email, function(email, status){
console.log("Email: " + email + "\nStatus: " + status);
});
What am I doing wrong?

console.log(email)function(data){ console.log('Email:' + data.email)}as your success method.