I want to send an email with the form parameters, with AngularJs and PHP, the email is sending but the parameters (name, email, etc) are empty. Where is the mistake? I'm pretty new to AngularJS and trying to build a contact form. I did some research to validate with angular, this works fine. However sending the input to my email account is still a mystery.
HMTl Code:
<form id="myform" name="myForm" data-abide role="form" ng-submit="processForm()">
<div class="formData.name">
<label>Your name <small>required</small>
<input type="text" name="formData.name" id="formData.name" required pattern="[a-zA-Z]+" ng-model="formData.name">
</label>
<small class="error">Name is required.</small>
</div>
<div class="formData.name">
<label>Your subject <small>required</small>
<input type="text" name="formData.subject" id="formData.subject" required pattern="[a-zA-Z]+" ng-model="formData.subject">
</label>
<small class="error">subject is required.</small>
</div>
<div class="formData.inputEmail-field">
<label>Email <small>required</small>
<input type="email" name="formData.email" id="formData.email" required ng-model="formData.email">
</label>
<small class="error">An email address is required.</small>
</div>
<div class="formData.tel">
<label>Phone #
<input type="text" name="formData.tel" id="formData.tel"required pattern="^([0-9]( |-)?)?(\(?[0-9]{3}\)?|[0-9]{3})( |-)?([0-9]{3}( |-)?[0-9]{4}|[a-zA-Z0-9]{7})$" ng-model="formData.tel">
</label>
<small class="error">Please enter your number in the format '123-456-7890'.</small>
</div>
<div class="formData.message">
<label>Message
<textarea name="formData.message" id="formData.message" ng-model="formData.message"></textarea> </label></div>
<button type="submit" class="columns small-centered">Submit</button>
<div class="panel">
<p>{{formData}}</p>
<p>{{codeStatus}}</p>
</div>
</form>
Code in my controller:
$scope.processForm = function() {
$http({
method : 'POST',
url : 'process.php',
data : $.param($scope.formData),
headers : { 'Content-Type': 'application/x-www-form-urlencoded' },
}).success(function(formData) {
console.log(formData);
if (formData.success) {
console.log('Success');
} else {
console.log('Fail');
}
});
};
PHP Code:
<?php
$postdata = file_get_contents("php://input");
if(!isset($postdata)) {
$response = array('status' => 'error', 'value'=>'Eroare de server - 0.');
die(json_encode($response));
}
$request = json_decode($postdata);
$name = htmlspecialchars($request->name);
$tel = htmlspecialchars($request->tel);
$email = htmlspecialchars($request->email);
$subject = htmlspecialchars($request->subject);
$mess = htmlspecialchars($request->message);
$to = "[email protected]";
$subject = $subject;
$message = "The user: $name contacted you using the contact form. His details are:\r\nPhone: $tel\r\nEmail: $email\r\nMessage: $mess";
$headers = "From: <".$email.">". "\r\n";
$headers .= "Reply-To: <".$email.">". "\r\n";
$headers .= 'MIME-Version: 1.0'. "\r\n";
$headers .= 'Content-type: text/html; charset=UTF-8'. "\r\n";
if(mail($to, $subject, $message, $headers)) {
$response = array('status' => 'success', 'value'=>'Mail trimis');
echo json_encode($response);
} else {
$response = array('status' => 'error', 'value'=>'Mail netrimis');
die(json_encode($response));
}
?>
Did you take a look at FormGroups? They are very useful in this scenario, and are very easy to use. Check them out here.
Edit: This is a posible aproach for Angular, not AngularJs, sorry for the misundersanting.
Our community is visited by hundreds of web development professionals every day. Ask your question and get a quick answer for free.
Find the answer in similar questions on our website.
Do you know the answer to this question? Write a quick response to it. With your help, we will make our community stronger.
PHP (from the English Hypertext Preprocessor - hypertext preprocessor) is a scripting programming language for developing web applications. Supported by most hosting providers, it is one of the most popular tools for creating dynamic websites.
The PHP scripting language has gained wide popularity due to its processing speed, simplicity, cross-platform, functionality and distribution of source codes under its own license.
https://www.php.net/
Angular is one of the most powerful JavaScript frameworks out there. Google uses this platform to develop a Single Page Application (SPA). This development environment is known primarily because it provides developers with a better environment for combining JavaScript with HTML and CSS. More than half a million sites like google.com, youtube.com, etc. use Angular.
https://angular.io/
HTML (English "hyper text markup language" - hypertext markup language) is a special markup language that is used to create sites on the Internet.
Browsers understand html perfectly and can interpret it in an understandable way. In general, any page on the site is html-code, which the browser translates into a user-friendly form. By the way, the code of any page is available to everyone.
https://www.w3.org/html/
Welcome to the Q&A site for web developers. Here you can ask a question about the problem you are facing and get answers from other experts. We have created a user-friendly interface so that you can quickly and free of charge ask a question about a web programming problem. We also invite other experts to join our community and help other members who ask questions. In addition, you can use our search for questions with a solution.
Ask about the real problem you are facing. Describe in detail what you are doing and what you want to achieve.
Our goal is to create a strong community in which everyone will support each other. If you find a question and know the answer to it, help others with your knowledge.