Category: wordpress

My Google map in WordPress

5:54 pm on September 11th, 2007, by Jaron Ghani

Really just a proof of concept, but pretty handy, eh!


View Larger Map

Comment » | ajax, maps, wordpress

WordPress Email Sending Fix

9:38 am on May 18th, 2007, by Andy Tawse

Sending emails seemed to be broken on this WordPress installation. I’ve seen this before too.

The fix is in includes/pluggable-functions.php

function wp_mail()

Set the from header to from@newmediacollective.com:

"From: form@newmediacollective.com\n"

WordPress tries to set it to something like wordpress@newmediacollective.com. Our server doesn’t send emails from addresses that don’t exist as a protection against sending spam.

This isn’t the best way to update WordPress because doing an update might overwrite this but there doesn’t seem to be a better way at the moment.

2 comments » | mail, php, wordpress

Back to top