What is the best way to actually return a value from meteor call in a helper. I am stumped. For some reason this and a few other things I have tried isn't working:
defaultEmailMsg: function(){
Meteor.call('getCompanyProfile', companyCode.get(), function (err, res){
if( res ){
return res.companyBillingEmailMessage;
}
});
},