2776

PHP Sendmail Setup with SMTP IIS and Windows Servers

iis php sendmail

Did you had problems setting up PHP on a Windows server which is running IIS and also running a SMTP server inside IIS? Have you faced problems sending mail from PHP scripts running on IIS server with IIS SMTP engine? By default IIS doesn’t allow relaying SMTP mails if it comes from 3rd party products. So this problem is related to IIS SMTP “Relay Restrictions”. Sometimes some of my clients are using PHP on windows servers using IIS 6 as the web server. In linux PHP supports native sendmail system from the OS itself. But in windows you need to tweak your way to make PHP able to send out mail from localhost. If you are a .Net developer, you might already know that from ASP.Net codes or even Classic Asp code it’s just as simple as 1,2,3 to send out email or use the IIS local SMTP server. Let me make it simple for you, so that you guys can make use of the localhost server from PHP.

Here are the stuff needed to do :

1 – Install and Configure IIS with PHP:

First of all install and configure PHP 5 as described in the PHP documentation. Try to avoid the windows based binary installer. Download the full package and install it manually.

2 – Test out PHP Pages:

Once you’ve done with the installation. Test it out with a sample php info page. If PHP is able to execute the pages on the server then we are ready for the next step.

3 – Test email sending from PHP:

Now we need a test script to check whether we are able to send email using PHP. Here is a sample script that will aid you out in this situation. Copy the content from this code and save it as email_test.php at your server root. Then try to run the file online (eg. mydomain.com/email_test.php) if it’s returns “not ok” means you are not able to send email out. You can change the ‘user@mydomain.com’ into your email address so that you can receive the mail if it’s a success.

Contents of email_test.php:

<?php
if(mail('user@mydomain.com','test subject','test message')){
      echo('ok');
    }
else{
      echo('not ok');
    }
?>

4 – Configure PHP.INI for SMTP:

Lets stop IIS from the IIS Manager. Now open your PHP.INI file. It could be on your C:PHP folder or C:WINDOWS folder. Depends on how you’ve configured IIS and PHP on your system. Once you’ve opened the PHP.INI file with notepad or something, search for the entry called “[mail function]” and set it as below.
php-sendmail-setup-php-ini-iis-01
Save and close the PHP.INI file.

5 – Configure IIS SMTP Relay Restrictions:

Once you’re done with PHP.INI, head over to Internet Information Services Manager. Assume that the IIS is running SMTP server also to send out email. You should be able to see the entry inside IIS manager stated “Default SMTP Virtual Server” or similar items. Now right click and access the properties page from “Default SMTP Virtual Server” as it’s shown below.

php-sendmail-iis-windows-smtp-setup-00

on the properties page move to “Access” tab and click on “Connection” and you will be able to see which server/IP’s are allowed to make connection to the server. If “127.0.0.1” IP is not there on the list, add it using the “Add” button, additionally you may also insert your server IP on the list.

php-sendmail-iis-windows-smtp-setup-02

Once you are done at the “Connections” window, click on OK button to accept the information. Now Click on “Relay” button at the “Access” tab and setup the relay options for the server. Grant the IP’s allowed to relay out mail for the mail server. Make sure “localhost” and IP “127.0.0.1” are granted for relay, addition to that you can also insert your domain name and IP.

php-sendmail-iis-windows-smtp-setup-03

Once you are done with “Relay Restrictions” window, click ok to accept the options and then click “Apply” and “Ok” button respectively to go back to the main screen of IIS Manager.
Now you can restart IIS from IIS manager.

php-sendmail-iis-windows-smtp-setup-04

6 – Try sending email again:

Now for your testing run the email_test.php file again. It should give you the response “ok“. If it’s not please check your SMTP configuration one more time along with PHP server settings and PHP.INI file.

GD Star Rating
loading...
PHP Sendmail Setup with SMTP IIS and Windows Servers, 7.9 out of 10 based on 50 ratings

About Ruhani Rabin

Ruhani Rabin is the original owner and author of this blog. He also reviews web 2.0 startups at Tech2all.com. Largely interested in web 2.0 apps & Social Media. Currently the Vice President of MOL Access Portal (MOL is owner of Friendster.com). Also he is Web 2.0 & Social Media Researcher and a Total fun Geek!.. There you have it ;)

Twitter Profile: http://twitter.com/ruhanirabin

  • Rich Miller
    Worked great. Right to the point and helpful. I had everything in order except the relay access.
  • well, sendmail.exe is a simple windows console application that emulates sendmail's ... it doesn't support deferred delivery!
  • Mohambry Appavoo
    Thank you very much Ruhani, your information was very helpful.

    Could help to be able to save a stored email in the sent items.
  • Worked like a charm. Thank you.
  • Hi Ruhani, I found this solution to be the only thing that worked for me to run my PHP website on IIS using sendmail. I plugged the link on my Twitter page to show how much I appreciated it!

    When I got this to work, I noticed that it's been keeping data on the mailroot folder of InetPub. Is there a way for IIS not to store this information? The folder has expanded to more than a gig in just a couple of weeks. I've been reading the contents of the folders, and I've been reading unknown and sketchy looking e-mail addresses. Instead of allowing only my domain and IP relay info, I've allowed all. Could this be a reason why I'm getting them? Is there a way for IIS not to keep this data on the server because I really do not need them.

    Thanks! I'd appreciate your response!!
  • randy
    If the damn google ad wasnt on top of the text, It might be the correct solution.
  • Thanks! I've searched around and nothing worked except your solution!
  • thank u for sharing. this one the interesting article which i read.i need to know about smtp and i got this. thanks again for this.
  • sswach
    I have tried the instructions but it does not work. The test email comes back not ok. I have IIS setup and smpt it works for ASP pages but the PHP it does not. I do not even get an error in the log files.
  • Jason
    I have this same setup but I'm unable to send email using PHP's mail() function to outside domains, such as yahoo, hotmail, gmail, etc. I can only send emails to accounts within my domain OR using a mail program such as outlook. How do to send emails to external domains like the ones I named above using php mail?
blog comments powered by Disqus

Parse error: syntax error, unexpected '}' in /home/ruhanira/public_html/wp-content/themes/ColdStone/footer.php on line 1