Need help in contact .xml

i had a website in xml and i have designed the contact for can you guys tell me how to send mails through it. Most of the guys has told me about php one but did not given any source code . Please if any one has share it

what does your xml form look like?

you will atleast need a contact.php page or something like that and add the following code (depending on whats in your form)

<?php

if(isset($_POST['email'])){
    $to = $_POST['email'];
    $from =  'your@email.com';
    $subject = $_POST['subject'];
    $message = $_POST['message'];
    mail($to, $subject, $message, 'From: ' . $from);
}

more on PHP mail can be found here: http://php.net/manual/en/function.mail.php

Off Topic:

You’ll find detecting a POST request is much more robust with…


<?php
if('POST' === $_SERVER['REQUEST_METHOD']){
    
}