SMTP is not working?

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
admin_eniyan
Forum Newbie
Posts: 2
Joined: Mon Aug 24, 2009 12:23 am
Location: Chennai

SMTP is not working?

Post by admin_eniyan »

Hi all,

Hope was somebody could help me.

I am trying to send email using SMTP. But I was able to send, I am getting error messages. Server works on UNIX operating system.

$to= "test@ymail.com";
$subject = "Hello";
$message = "Test";
mail($to,$subject ,$message);
waseem83
Forum Commoner
Posts: 54
Joined: Tue Jun 23, 2009 3:51 am
Contact:

Re: SMTP is not working?

Post by waseem83 »

Are you trying it on local system?
Post Reply