<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[php mailer]]></title><description><![CDATA[<p dir="auto">php mailer එක local වැඩකරනව නමුත් hosting එකේ වැඩ කරන්නෙ නෑ. දවස් 4ක් විතර වැඩකරා ඒත් spam එකට mail ගියේ. දැන් mail send වෙන්නෙම නෑ. please help !!!!!</p>
]]></description><link>https://lankadevelopers.lk/topic/816/php-mailer</link><generator>RSS for Node</generator><lastBuildDate>Fri, 06 Mar 2026 03:14:35 GMT</lastBuildDate><atom:link href="https://lankadevelopers.lk/topic/816.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 21 Apr 2021 05:07:35 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to php mailer on Fri, 23 Apr 2021 07:53:04 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://lankadevelopers.lk/uid/1049">@kasun-viduranga</a> ගොඩක් Shared hosting service වල email sending limit කරල තියෙන්නෙ. නැතිනම් ports block කරලා තියෙන්නෙ. ඔයාට හොඳම වැඩේ SMTP service එකක් පාවිච්චි කරන එක. deliverability එකත් වැඩියි. <a href="http://mailgun.com" target="_blank" rel="noopener noreferrer nofollow ugc">mailgun.com</a> <a href="http://sendinblue.com" target="_blank" rel="noopener noreferrer nofollow ugc">sendinblue.com</a> <a href="http://sendgrid.com" target="_blank" rel="noopener noreferrer nofollow ugc">sendgrid.com</a> මම පාවිච්චි කරන්නේ <a href="http://mailgun.com" target="_blank" rel="noopener noreferrer nofollow ugc">mailgun.com</a>.</p>
<p dir="auto">$mail = new PHPMailer();<br />
...<br />
$mail-&gt;isSMTP();<br />
$mail-&gt;Host = '<a href="http://smtp.mailgun.com" target="_blank" rel="noopener noreferrer nofollow ugc">smtp.mailgun.com</a>';<br />
$mail-&gt;SMTPAuth = true;<br />
$mail-&gt;Username = 'username';<br />
$mail-&gt;Password = 'password’<br />
$mail-&gt;SMTPSecure = 'tls';<br />
$mail-&gt;Port = 25;<br />
...<br />
$mail-&gt;send();</p>
]]></description><link>https://lankadevelopers.lk/post/4438</link><guid isPermaLink="true">https://lankadevelopers.lk/post/4438</guid><dc:creator><![CDATA[iamprogrammerlk]]></dc:creator><pubDate>Fri, 23 Apr 2021 07:53:04 GMT</pubDate></item><item><title><![CDATA[Reply to php mailer on Fri, 23 Apr 2021 07:41:33 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://lankadevelopers.lk/uid/27">@root</a> <a class="plugin-mentions-user plugin-mentions-a" href="https://lankadevelopers.lk/uid/1049">@kasun-viduranga</a> Gmail SMTP පාවිච්චි කරලා යවන්න පුළුවන් දවසකට emails 100යි. <a href="https://support.google.com/a/answer/166852?hl=en" target="_blank" rel="noopener noreferrer nofollow ugc">https://support.google.com/a/answer/166852?hl=en</a></p>
]]></description><link>https://lankadevelopers.lk/post/4437</link><guid isPermaLink="true">https://lankadevelopers.lk/post/4437</guid><dc:creator><![CDATA[iamprogrammerlk]]></dc:creator><pubDate>Fri, 23 Apr 2021 07:41:33 GMT</pubDate></item><item><title><![CDATA[Reply to php mailer on Fri, 23 Apr 2021 07:37:03 GMT]]></title><description><![CDATA[<p dir="auto">Email spam folder එකට යන්න ප්‍රදාන හේතුවක් වෙන්නේ යවන්නාගේ email address එකයි domain එකයි match වෙන්නෙ නැති එක. මේක වෙන්නේ <a href="http://en.wikipedia.org/wiki/Reverse_DNS_lookup" target="_blank" rel="noopener noreferrer nofollow ugc">http://en.wikipedia.org/wiki/Reverse_DNS_lookup</a> කියන තාක්ෂණය නිසා..<br />
Ex:<br />
Sender Email Address:- <a href="mailto:myemail@gmail.com" target="_blank" rel="noopener noreferrer nofollow ugc">myemail@gmail.com</a><br />
My site domain:- <a href="http://mydomain.com" target="_blank" rel="noopener noreferrer nofollow ugc">mydomain.com</a><br />
මේක හදාගන්න reply-to parameter එක define කරන්න.</p>
<p dir="auto">$mail = new PHPMailer();<br />
...<br />
$mail-&gt;addReplyTo('myemail@mydomain.com', 'My Name');<br />
...<br />
$mail-&gt;send();</p>
]]></description><link>https://lankadevelopers.lk/post/4436</link><guid isPermaLink="true">https://lankadevelopers.lk/post/4436</guid><dc:creator><![CDATA[iamprogrammerlk]]></dc:creator><pubDate>Fri, 23 Apr 2021 07:37:03 GMT</pubDate></item><item><title><![CDATA[Reply to php mailer on Wed, 21 Apr 2021 13:56:43 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://lankadevelopers.lk/uid/1049">@kasun-viduranga</a></p>
<p dir="auto">shared wala nam contact karanna wenawa hosting eka. man hithanne Sendmail disable karala athi. gmail smtp use karannako lesine.</p>
<p dir="auto"><a href="https://netcorecloud.com/tutorials/send-an-email-via-gmail-smtp-server-using-php/" target="_blank" rel="noopener noreferrer nofollow ugc">https://netcorecloud.com/tutorials/send-an-email-via-gmail-smtp-server-using-php/</a></p>
]]></description><link>https://lankadevelopers.lk/post/4435</link><guid isPermaLink="true">https://lankadevelopers.lk/post/4435</guid><dc:creator><![CDATA[root]]></dc:creator><pubDate>Wed, 21 Apr 2021 13:56:43 GMT</pubDate></item><item><title><![CDATA[Reply to php mailer on Wed, 21 Apr 2021 10:06:50 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://lankadevelopers.lk/uid/27">@root</a> shared ekak thama mama hithana vidihata</p>
]]></description><link>https://lankadevelopers.lk/post/4434</link><guid isPermaLink="true">https://lankadevelopers.lk/post/4434</guid><dc:creator><![CDATA[kasun viduranga]]></dc:creator><pubDate>Wed, 21 Apr 2021 10:06:50 GMT</pubDate></item><item><title><![CDATA[Reply to php mailer on Wed, 21 Apr 2021 09:56:52 GMT]]></title><description><![CDATA[<p dir="auto">meka shared hosting ekak da machan &gt; nathnam vps ekak da &gt;</p>
]]></description><link>https://lankadevelopers.lk/post/4433</link><guid isPermaLink="true">https://lankadevelopers.lk/post/4433</guid><dc:creator><![CDATA[root]]></dc:creator><pubDate>Wed, 21 Apr 2021 09:56:52 GMT</pubDate></item><item><title><![CDATA[Reply to php mailer on Wed, 21 Apr 2021 09:50:41 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://lankadevelopers.lk/uid/27">@root</a> <a href="https://www.xamaa.com/" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.xamaa.com/</a>  meka thama use karanne wena hosting ekakath baluwa eth eke wadakaranneth na</p>
]]></description><link>https://lankadevelopers.lk/post/4432</link><guid isPermaLink="true">https://lankadevelopers.lk/post/4432</guid><dc:creator><![CDATA[kasun viduranga]]></dc:creator><pubDate>Wed, 21 Apr 2021 09:50:41 GMT</pubDate></item><item><title><![CDATA[Reply to php mailer on Wed, 21 Apr 2021 08:21:55 GMT]]></title><description><![CDATA[<p dir="auto">mokadda host eka ?</p>
]]></description><link>https://lankadevelopers.lk/post/4431</link><guid isPermaLink="true">https://lankadevelopers.lk/post/4431</guid><dc:creator><![CDATA[root]]></dc:creator><pubDate>Wed, 21 Apr 2021 08:21:55 GMT</pubDate></item></channel></rss>