Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for
sending emails programmatically from php
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Plusnet Community
- :
- Forum
- :
- Help with my Plusnet services
- :
- :
- sending emails programmatically from php
sending emails programmatically from php
01-06-2013 1:40 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
I bet you can't crack this one!
I'm running some PHP software (oscommerce) under xampp
in a mac osx (panther) environment. The software purports to
send email confirmation of orders but these never arrive.
I've modified php.ini as reccommended and set up a mail server for
smtp but still no joy.
Can't help me can you?
Wimps!
I'm running some PHP software (oscommerce) under xampp
in a mac osx (panther) environment. The software purports to
send email confirmation of orders but these never arrive.
I've modified php.ini as reccommended and set up a mail server for
smtp but still no joy.
Can't help me can you?
Wimps!
Message 1 of 2
(2,015 Views)
1 REPLY 1
Re: sending emails programmatically from php
01-06-2013 2:10 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
The only PHP email shizzle I've played about with is below :
Have you checked any of your logfiles to see if it's flagged up why your message isn't being sent ?
<?php
$to = "mywife47837983@hotmail.com";
$message = "Are you ready for bed yet ?";
mail($to, "Bedtime ?", $message,"From: dom@emaildomain.co.uk", "-fdom@emaildomain.co.uk");
?>
Have you checked any of your logfiles to see if it's flagged up why your message isn't being sent ?
Message 2 of 2
(427 Views)
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Plusnet Community
- :
- Forum
- :
- Help with my Plusnet services
- :
- :
- sending emails programmatically from php