<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1034037" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1034037</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/php-not-sending-mail#comment-1197768</link>
    <description> &lt;p&gt;By local, I meant it&#039;s at your house or place of business. On the same network (LAN) as your computer. And by remote, I meant it&#039;s off somewhere else. It sounds like it&#039;s remote.&lt;/p&gt;
&lt;p&gt;And you&#039;re correct. When it is a remote web host, your ISP has nothing to do with it at all.&lt;/p&gt;
 </description>
     <pubDate>Tue, 18 Apr 2006 14:50:01 +0000</pubDate>
 <dc:creator>timjpriebe</dc:creator>
 <guid isPermaLink="false">comment 1197768 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/php-not-sending-mail#comment-1197765</link>
    <description> &lt;p&gt;Yeah. Thanks for above.&lt;br /&gt;
Greg K; tried your script and got &#039;message accepted&#039; but no mail sent so I must assume my web host doesn&#039;t support it. From another source I have discovered that&lt;br /&gt;
just because your web host is php ennabled  it doesn&#039;t mean they allow you to send email.&lt;br /&gt;
Timjpriebe; must show my ignorance and confess I don&#039;t know the difference between&lt;br /&gt;
a local or remote web server. To me they are just a web host.&lt;br /&gt;
As for your ISP not allowing any mail to be sent other than from themselves, I didn&#039;t&lt;br /&gt;
think it had anything to do with them. I thought it was sent directly from your web host when it comes from a form on your website.&lt;br /&gt;
thanks again&lt;/p&gt;
&lt;p&gt;Paul&lt;/p&gt;
 </description>
     <pubDate>Tue, 18 Apr 2006 14:09:33 +0000</pubDate>
 <dc:creator>paul7252</dc:creator>
 <guid isPermaLink="false">comment 1197765 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/php-not-sending-mail#comment-1197748</link>
    <description> &lt;p&gt;And remember with Greg&#039;s script, just because it says &quot;Message accepted.&quot; doesn&#039;t mean it&#039;s working. That would mean that there is nothing wrong with the script itself, though.&lt;/p&gt;
 </description>
     <pubDate>Tue, 18 Apr 2006 12:47:24 +0000</pubDate>
 <dc:creator>timjpriebe</dc:creator>
 <guid isPermaLink="false">comment 1197748 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/php-not-sending-mail#comment-1197693</link>
    <description> &lt;p&gt;See if you can do a very basic e-mail, try:&lt;/p&gt;
&lt;p&gt; &lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&lt;span style=&quot;color: #000000&quot;&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&amp;lt;?php&lt;br /&gt;&amp;nbsp; $to &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;= \&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;me@domain.com\&quot;;&amp;nbsp; // Change this to your e-mail address&lt;br /&gt;&amp;nbsp; &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$subject&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt; = \&quot;Test Messsage\&quot;;&lt;br /&gt;&amp;nbsp; &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$body&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt; = \&quot;This is the body of the e-mail.\&quot;;&lt;br /&gt;&amp;nbsp; &lt;br /&gt;&amp;nbsp; if (mail(&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$to&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$subject&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;,&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$body&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;))&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; echo \&quot;Message accepted.\n\&quot;;&lt;br /&gt;&amp;nbsp; else&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; echo \&quot;Message rejected.\n\&quot;;&lt;br /&gt; &lt;br /&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p&gt; For more information, see &lt;a href=&quot;http://www.php.net/manual/en/function.mail.php&quot; class=&quot;bb-url&quot;&gt;http://www.php.net/manual/en/function.mail.php&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;-Greg&lt;/p&gt;
 </description>
     <pubDate>Mon, 17 Apr 2006 21:07:51 +0000</pubDate>
 <dc:creator>Greg K</dc:creator>
 <guid isPermaLink="false">comment 1197693 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/php-not-sending-mail#comment-1197666</link>
    <description> &lt;p&gt;Are you running the script on a local server or a remote web server?&lt;/p&gt;
&lt;p&gt;I know PHP emails don&#039;t work on my local test server because my ISP won&#039;t let any servers but their own send outgoing email.&lt;/p&gt;
 </description>
     <pubDate>Mon, 17 Apr 2006 16:35:45 +0000</pubDate>
 <dc:creator>timjpriebe</dc:creator>
 <guid isPermaLink="false">comment 1197666 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/php-not-sending-mail#comment-1197649</link>
    <description> &lt;p&gt;Make sure that what/whoever is hosting you has PHP enabled and is configured correctly.&lt;/p&gt;
&lt;p&gt;(PHP mail vars)&lt;/p&gt;
 </description>
     <pubDate>Mon, 17 Apr 2006 15:12:44 +0000</pubDate>
 <dc:creator>Maxwell</dc:creator>
 <guid isPermaLink="false">comment 1197649 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
