Arkadaşlar Merhaba Elimde Ajax ile oluşturulmuş bir form var.
Bu formun görseli aşağıdaki gibidir.



Resimde göreceğiniz üzere bu formun 2 adet input kısmı var. Buralaraya yazılan Name ve Age bilgileri save buttonuna basıldıktan sonra yukarıda listelenmektedir. Ben yukarıda listelenen içeriği post methoduyla alıp Phpmailer aracılığıyla mailime göndermek istiyorum. Bu konuda yardımcı olabilir misiniz?
Teşekkürler. (Formun Html Kodlar aşağıdaki gibidir)



<script></script>
<script></script>
<script></script>



Simple Example with Angular List with crude features














SrNameAgeAction
{{$index + 1}}
{{user.Name}}
{{user.Age}}




























<script>
angular.module('TestApp', ['TestApp.controllers']);

angular.module('TestApp.controllers', []).controller('testController', function($scope) {
$scope.objectIndex = '';
$scope.userList = [

];

$scope.edit = function(id) {
//search user and update it
$scope.objectIndex = id;
$scope.userObject = angular.copy($scope.userList[id]);
console.log($scope.objectIndex);
}

$scope.save = function() {
console.log($scope.objectIndex);
if($scope.userList[$scope.objectIndex] == null) {
//if this is new record, add it in users array
$scope.userList.push($scope.userObject);
} else {
//for existing record, find this record using id
//and update it.
$scope.userList[$scope.objectIndex] = $scope.userObject;
}

//clear the add record form
$scope.userObject = {};
$scope.objectIndex = '';
}

$scope.delete = function(id) {
//search record with given id and delete it
for(i in $scope.userList) {
if($scope.userList[i].id == id) {
$scope.userList.splice(i,1);
$scope.userList = {};
}
}

}
});
</script>