I'm trying to make a contact form that emails. This code used to work and nothing about my server has changed but not so much anymore. If you guys could help I'd greatly appreciate it.
Code:
<?php
$name = $_POST['name'];
$email = $_POST['email'];
$subject = $_POST['subject'];
$message =...