0
votes
1answer
78 views

Mail not sent when I set HTML headers

$subject = get_the_title(); $sender_name = get_bloginfo('name'); $blog_url = get_bloginfo('url'); $to = 'myemail@mydomainname.com'; $subject = 'the subject'; $message = 'hello'; $headers = ...
0
votes
2answers
273 views

Wordpress refuses to send mail, “…your host may have disabled the mail() function”

I recently implemented a comment area on my website and tried to get the email notification functionality to work. It doesn't seem to want to send email notifications when new comments are made. Just ...
0
votes
1answer
306 views

Can I get an email notification when media is uploaded to the media library?

I have a front end uploader for members only, utilizing this code: <?php function insert_attachment_form($postID) { ?> <form id="file-form" name="file-form" method="POST" action="" ...