<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>mail göndermek | Barış ÖZCAN Web Tasarım | antalya web tasarım | antalya web tasarımı | Sosyal Medya Danışmanlığı</title>
	<atom:link href="https://www.barisozcan.net/etiket/mail-gondermek/feed" rel="self" type="application/rss+xml" />
	<link>https://www.barisozcan.net</link>
	<description></description>
	<lastBuildDate>Wed, 27 Oct 2010 21:17:09 +0000</lastBuildDate>
	<language>tr</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>PHP de mail göndermek</title>
		<link>https://www.barisozcan.net/php-de-mail-gondermek</link>
					<comments>https://www.barisozcan.net/php-de-mail-gondermek#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Wed, 27 Oct 2010 21:17:09 +0000</pubDate>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[mail göndermek]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[PHP de mail göndermek]]></category>
		<category><![CDATA[PHP mail]]></category>
		<guid isPermaLink="false">http://www.barisozcan.net/?p=53</guid>

					<description><![CDATA[<p>PHP de mail göndermek</p>
<p>The post <a href="https://www.barisozcan.net/php-de-mail-gondermek">PHP de mail göndermek</a> first appeared on <a href="https://www.barisozcan.net">Barış ÖZCAN Web Tasarım | antalya web tasarım | antalya web tasarımı | Sosyal Medya Danışmanlığı</a>.</p>]]></description>
										<content:encoded><![CDATA[<iframe src="http://www.facebook.com/plugins/like.php?href=https://www.barisozcan.net/php-de-mail-gondermek&amp;layout=standard&amp;show_faces=1&amp;width=450&amp;action=like&amp;colorscheme=light&amp;font=" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:25px"></iframe><p>PHP ile mail göndermek PHP’nin en güzel özelliklerinden biridir çünkü  çok basittir <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Bu yazımda PHP ile mail gönderme konusuna ayrıntılı  olarak değineceğim.</p>
<div id="highlighter_573493">
<div>
<div><code>1.</code><code>mail(</code><code>$alici</code><code>, </code><code>$konu</code><code>, </code><code>$mesaj</code><code>, </code><code>$diger_degerler</code><code>);</code></div>
</div>
</div>
<p>Aslında PHP ile mail göndermek yukarıdaki koddan ibaret ama biz biraz detaya inip HTML mail göndereceğiz.</p>
<p><span id="more-53"></span>Kısaca mail parametrelerine bir göz atalım;</p>
<p><strong>From: $gonderen_isim &lt;$gonderen&gt;: </strong>Mailin kimden geldiğini gösterir bir diğer deyişle gönderenin adı ve adresi.</p>
<p><strong>Reply-To: $gonderen_isim &lt;$gonderen&gt;: </strong>Cevabın yollanacağı adresi gösterir.</p>
<p><strong>MIME-Version: 1.0 : </strong>E-postanın MIME sürümünü belirtir. Olsada olur olmasada olur.</p>
<p><strong>Content-type: text/html; charset=iso-8859-9 :</strong> İşte asıl elemanımız. Bu kod parçacığı sayesinde html mail gönderebilir ve oluşan Türkçe karakter sorununuda giderebilirsiniz.</p>
<p>Aşağıda gördüğünüz benim geliştirdiğim bir mail fonksiyonu. Fonksiyon  sayesinde hem HTML hemde normal metin olarak mail atabilirsiniz.</p>
<div id="highlighter_747792">
<div>
<div><code>01.</code><code>function</code> <code>mail_gonder(</code><code>$alici</code><code>,</code><code>$konu</code><code>,</code><code>$mesaj</code><code>,</code><code>$gonderen_isim</code><code>,</code><code>$gonderen</code><code>){</code></div>
<div><code>02.</code><code> </code><code>$diger</code> <code>= </code><code>"MIME-Version: 1.0\n"</code><code>;</code></div>
<div><code>03.</code><code> </code><code>$diger</code> <code>.= </code><code>"Content-type: text/html; charset=iso-8859-9\n"</code><code>;</code></div>
<div><code>04.</code><code> </code><code>$diger</code> <code>.= </code><code>"From: $gonderen_isim &lt;$gonderen&gt;\n"</code><code>;</code></div>
<div><code>05.</code><code> </code><code>$diger</code> <code>.= </code><code>"Reply-To: $gonderen_isim &lt;$gonderen&gt;"</code><code>;</code></div>
<div><code>06.</code></div>
<div><code>07.</code><code>mail(</code><code>$alici</code><code>, </code><code>$konu</code><code>, </code><code>$mesaj</code> <code>, </code><code>$diger</code><code>);</code></div>
<div><code>08.</code><code>}</code></div>
<div><code>09.</code></div>
<div><code>10.</code><code>//Kullanımı</code></div>
<div><code>11.</code><code>mail_gonder(</code><code>"Mailin gideceği adres"</code><code>,</code><code>"Konu"</code><code>,</code><code>"Yazımız isterseniz HTML kullanabilirsiniz."</code><code>,</code><code>"Gönderenin adı"</code><code>,</code><code>"Gönderenin adresi"</code><code>);</code></div>
</div>
</div>
<h1>Oluşabilecek hatalar;</h1>
<p><strong>Neden gönderdiğim mail spam klasörüne gidiyor?</strong></p>
<p>Bu sorunu aşmanız için maili özel bir adresden göndermelisiniz.  Örnek: admin@siteadi.com ( siteadi.com,  hotmail gibi bedava mail adresi  veren bir firma olmamalı yani kendi hostunuz olmalı )</p>
<p><strong>Localhosttan neden mail gönderemiyorum ?</strong></p>
<p>Bunun nedeni SMTP ayarlarınızın tam yapılmaması veya bilgisayarınızda  SMTP olmaması. Bir Windows kurulum CD’sinden bunu tedarik  edebilirsiniz.</p>
<p><strong>Her şey doğru hatta hostumda çalıştırıyorum ama hala çalışmıyor ?</strong><br />
Yukarıdaki fonksiyonun aynısını kullandıysanız ve hala sorun varsa  hostunuzda bir problem var fakat siz uzun yolu seçip kendiniz yazmaya  kalktıysanız yukarıdaki fonksiyonda gördüğünüz <strong>$diger</strong> değişkenlerinin sıralamalarını karıştırmış olabilirsiniz çünkü bu sıralama önemli.</p><p>The post <a href="https://www.barisozcan.net/php-de-mail-gondermek">PHP de mail göndermek</a> first appeared on <a href="https://www.barisozcan.net">Barış ÖZCAN Web Tasarım | antalya web tasarım | antalya web tasarımı | Sosyal Medya Danışmanlığı</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://www.barisozcan.net/php-de-mail-gondermek/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
