Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Registration Email Not Being Sent – new issue


chrishajer
Participant

@chrishajer

Can you make sure you can still send email from your server? If you have ssh/command line access, you can try this:

php -r 'mail( 'you@yourdomain.com', "subject: test", "message: test", 'From: you@yourdomain.com');'

If you have FTP access, put this into a file called mailer.php (or whatever.php you want) and then navigate to it with a browser”

<html>
<body>
<?php
mail( 'you@yourdomain.com', "subject: test", "message: test", 'From: you@yourdomain.com');
echo "Mail should have been sent, check your inbox";
?>
</body>
</html>

Once you know if you can send email from your server, you can move forward.

Skip to toolbar