godaddy - php mailer
Moderator: General Moderators
godaddy - php mailer
Does anyone know how to work around/with the godaddy php mailer? I have a php script that works perfectly fine with my host(not godaddy), but shows no signs of life on godaddy. Any help is appreciated!
- John Cartwright
- Site Admin
- Posts: 11470
- Joined: Tue Dec 23, 2003 2:10 am
- Location: Toronto
- Contact:
This sounds like something you should discuss with your host.
Otherwise, are you getting any error messages? PHP mailer has a debugging feature, if memory serves.
or something along those lines.
Out of habbit, you should be using cough cough swiftmailer.org
Otherwise, are you getting any error messages? PHP mailer has a debugging feature, if memory serves.
Code: Select all
$phpmailer->debug = true;Out of habbit, you should be using cough cough swiftmailer.org
- Chris Corbyn
- Breakbeat Nuttzer
- Posts: 13098
- Joined: Wed Mar 24, 2004 7:57 am
- Location: Melbourne, Australia
so there is no way to use the following with godaddy?
Code: Select all
$msg="Some message.\n\n";
$to="something@something.com";
$subject="Subject";
$mailheaders="From: www.something.com Site <>\n";sorry forgot to include:
Code: Select all
mail($to, $subject, $msg, $mailheaders);- Chris Corbyn
- Breakbeat Nuttzer
- Posts: 13098
- Joined: Wed Mar 24, 2004 7:57 am
- Location: Melbourne, Australia
Re-read my reply. I didn't say mail() won't work, I said "aything other than mail()"kippy wrote:sorry forgot to include:
Code: Select all
mail($to, $subject, $msg, $mailheaders);
- Chris Corbyn
- Breakbeat Nuttzer
- Posts: 13098
- Joined: Wed Mar 24, 2004 7:57 am
- Location: Melbourne, Australia
It's PHP code. You just upload it to your host's server and run it like any other PHP codekippy wrote:So how does swift mailer work? Does it have to be installed ona server, etc?
GoDaddy bug me... but I guess when they sell their plans for peanuts they can't be expected to provide anything very flexible.
- Chris Corbyn
- Breakbeat Nuttzer
- Posts: 13098
- Joined: Wed Mar 24, 2004 7:57 am
- Location: Melbourne, Australia
I write Swift Mailer. I'm not sure what you mean... I don't use GoDaddy so I haven't been able to get it working on GoDaddy servers. Are you saying mail() doesn't work neither? Have you spoken to GoDaddy about this yet?kippy wrote:so how did you get yours to work? I mean, you would think sending emails wouldnt be that difficult...