<?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>Tech Mug &#187; html</title>
	<atom:link href="http://www.techmug.com/tag/html/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.techmug.com</link>
	<description></description>
	<lastBuildDate>Tue, 31 Jan 2012 12:15:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>CSS Navigation for Beginners</title>
		<link>http://www.techmug.com/css-navigation-for-beginners/</link>
		<comments>http://www.techmug.com/css-navigation-for-beginners/#comments</comments>
		<pubDate>Sat, 27 Nov 2010 10:03:11 +0000</pubDate>
		<dc:creator>smsinns</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[XHTML]]></category>
		<category><![CDATA[CSS Navigation]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[navigation]]></category>

		<guid isPermaLink="false">http://www.techmug.com/?p=347</guid>
		<description><![CDATA[CSS Navigation for Beginners This is the tutorial for anyone who wants to begin with developing CSS Navigation. I describe the development of CSS navigation/menu in simple and quick steps. This solution of CSS Navigation has some curve designs and it is flexible enough to increase or decrease its width according to the link text. [...]]]></description>
			<content:encoded><![CDATA[<p><strong>CSS Navigation for Beginners</strong></p>
<p>This is the tutorial for anyone who wants to begin with <strong>developing CSS Navigation.</strong> I describe the development of CSS navigation/menu in simple and quick steps. This solution of CSS Navigation has some curve designs and it is flexible enough to increase or decrease its width according to the link text.</p>
<p style="text-align: center;"><a href="http://www.techmug.com/demo/css-nav-for-beginners/techmug-css-navigation-for-beginners.zip"><img class="alignnone size-full wp-image-337" title="Download Source Code" src="http://www.techmug.com/wp-content/uploads/2010/10/btn-source-code.jpg" alt="Download Source Code" width="140" height="90" /></a> <a href="http://www.techmug.com/demo/css-nav-for-beginners" target="_blank"><img class="alignnone size-full wp-image-336" title="See Demo" src="http://www.techmug.com/wp-content/uploads/2010/10/btn-see-demo.jpg" alt="See Demo" width="140" height="90" /></a></p>
<p style="text-align: left;">This tutorial first defines the HTML structure to be used and then we move forward to format our HTML structure with the CSS.</p>
<p style="text-align: left;"><span id="more-347"></span></p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-7217075623453662";
google_ad_slot = "2820701010";
google_ad_width = 336;
google_ad_height = 280;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
<center><font-size="9px">Advertisement</font></center></p>
<h2>HTML</h2>
<p>Our CSS navigation will be based on following HTML structure.</p>
<h3>Code</h3>
<pre class="brush: xml; title: ; notranslate">
&lt;!-- Header --&gt;
&lt;div class=&quot;header&quot;&gt;
    &lt;!-- Nav --&gt;
    &lt;div class=&quot;nav&quot;&gt;
        &lt;ul&gt;
            &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;
            &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Abouts Us&lt;/a&gt;&lt;/li&gt;
            &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Portfolio&lt;/a&gt;&lt;/li&gt;
            &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Clients&lt;/a&gt;&lt;/li&gt;
            &lt;li&gt;&lt;a href=&quot;#&quot;&gt;Contact Us&lt;/a&gt;&lt;/li&gt;
        &lt;/ul&gt;
    &lt;/div&gt;
    &lt;!-- Nav Ends --&gt;
&lt;/div&gt;
&lt;!-- Header Ends --&gt;
</pre>
<h2>CSS</h2>
<p>This is the cream of our navigation. The whole interface of our navigation is controlled via below code. I&#8217;ve explained all the code step by step.</p>
<h3>Code</h3>
<pre class="brush: css; title: ; notranslate">
.header {
background:url(../images/nav-bg.png) top left repeat-x;
overflow:hidden;
}
.nav {
font-size:18px;
text-transform:uppercase;
margin:0 auto;
width:540px;
font-family:&quot;Lucida Sans Unicode&quot;, &quot;Lucida Grande&quot;, sans-serif;
color:#FFFFFF;
}
.nav li {
float:left;
padding-left: 20px;
margin-left: -20px;
cursor:pointer;
}
.nav li a {
display:block;
padding:19px 20px 19px 0;
color:#5e5e5e;
background:url(../images/header-nav-bg.png) top right no-repeat;
text-decoration:none;
}
.nav li:hover {
background:url(../images/header-nav-bg-left-hover.png) top left no-repeat;
}

.nav li:hover a {
background:url(../images/header-nav-bg-right-hover.png) top right no-repeat;
color:#FFF;
}
</pre>
<h3>Step 1</h3>
<p>We start off with <em>.header</em> class. Repeat 1px image on x-axis for background of Header Div. Note the use of <em>overflow: hidden</em>, it displays the background image correctly.</p>
<p><img class="alignnone size-full wp-image-374" style="border: 1px solid #ccc;" src="http://www.techmug.com/wp-content/uploads/2010/11/header-bg.gif" alt="" width="400" height="56" /></p>
<h3>Step 2</h3>
<p>Next we apply some formatting to our <em>.nav</em> class. This is the container DIV for our navigation. We have used <em>margin:0 auto</em> to align our navigation in center.</p>
<h3>Step 3</h3>
<p>Finally we come to format the core of our navigation, yeah! it is the unordered list. Float <em>li</em> to left, set its padding  and margin-left in (-ve) as per design. If you do not set margin-left in (-ve), it will look something like this (Note the white gap between two elements):</p>
<p><img class="alignleft size-full wp-image-379" style="border: 1px solid #ccc;" src="http://www.techmug.com/wp-content/uploads/2010/11/li-margin-not-set1.gif" alt="" width="281" height="56" /></p>
<p style="clear: both;">Setting up the margin-left in (-ve) brings the perfect look:</p>
<p><img class="alignleft size-full wp-image-380" style="border: 1px solid #ccc;" src="http://www.techmug.com/wp-content/uploads/2010/11/li-margin-set1.gif" alt="" width="260" height="56" /></p>
<p style="clear: both;">Set li cursor to pointer so user does not feel any differece in anchor tag and li.</p>
<p><img class="alignnone size-full wp-image-377" style="border: 1px solid #ccc;" src="http://www.techmug.com/wp-content/uploads/2010/11/li-cursor.gif" alt="" width="260" height="56" /></p>
<h3 style="clear: both;"><strong>Step 4<br />
</strong></h3>
<p>At this step we set anchor tag in <em>li</em> as block element, fix its padding, color, decoration style (Link style). We also use below image for as <em>li</em> background image.</p>
<p><img class="alignnone size-full wp-image-388" style="border: 1px solid #ccc;" src="http://www.techmug.com/wp-content/uploads/2010/11/header-nav-bg.png" alt="" width="20" height="56" /></p>
<h3>Step 5</h3>
<p>We want to change the background image of <em>li</em> when user mouse over on it. So, we set below image on <em>li</em> background on the hover state:</p>
<p><img class="alignnone size-full wp-image-387" style="border: 1px solid #ccc;" src="http://www.techmug.com/wp-content/uploads/2010/11/header-nav-bg-left-hover.png" alt="" width="20" height="56" /></p>
<h3>Step 6</h3>
<p>In the end we set below image as the background image of our links on hover state. Since all he links are under <em>li</em> tag, we use <em>.nav li:hover a</em> to format the links.</p>
<p><img class="alignnone size-full wp-image-389" style="border: 1px solid #ccc;" src="http://www.techmug.com/wp-content/uploads/2010/11/header-nav-bg-right-hover.png" alt="" width="350" height="56" /></p>
<p>Note the width of above image, it is probably much bigger than your link text, but using this technique automatically adjusts the link&#8217;s background area. And you no need to worry about the occurrence of any white space between your navigation&#8217;s elements.</p>
<p><strong> </strong><strong>CSS Navigation for Beginners</strong><br />
<script type="text/javascript"><!--
google_ad_client = "pub-7217075623453662";
google_ad_slot = "4831550702";
google_ad_width = 300;
google_ad_height = 250;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
<center><font-size="9px">Advertisement</font></center></p>
<h2>Final Words</h2>
<p>Finally, we have completed our one of the complex looking Navigation/menu in just less than 30 minutes&#8230;Cheers! Your comments and suggestions will be highly appreciated in improving this article.</p>
<h2>About Author</h2>
<p>I am Shahzaib, new writer here but I&#8217;ve been commenting on Techmug <img src='http://www.techmug.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  on few articles. Professionally Im UI/UX developer.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techmug.com/css-navigation-for-beginners/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Detect Javascript and Flash Enabled</title>
		<link>http://www.techmug.com/detect-javascript-and-flash-enabled/</link>
		<comments>http://www.techmug.com/detect-javascript-and-flash-enabled/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 18:56:07 +0000</pubDate>
		<dc:creator>Fraz Ahmed</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[Detect Javascript]]></category>
		<category><![CDATA[Flash Enabled]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[swf]]></category>
		<category><![CDATA[tactic]]></category>

		<guid isPermaLink="false">http://www.techmug.com/?p=73</guid>
		<description><![CDATA[Javascript and Flash are super tools to enhance the usability of your website. You put a lot of efforts to create beautiful form validation and an attractive flash animation. But all the efforts are ruined when the visitor of your website has disabled Javascript or does not have flash plugin installed. Here I&#8217;ll provide you [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Javascript and Flash</strong> are super tools to enhance the usability of your website. You put a lot of efforts to create beautiful form validation and an <strong>attractive flash animation</strong>. But all the efforts are ruined when the visitor of your website has disabled Javascript or does not have flash plugin installed. Here I&#8217;ll provide you a little solution to escape from this problem.</p>
<p><span id="more-73"></span></p>
<h2>First Tactic &#8211; Detect Javascript Enabled</h2>
<p>Our first step is to detect whether visitor has Javascript enabled or not. If Javascript is not enable, we will redirect user to an error/instruction page <em>(I create a seperate page where I give instructions to visitor that how to enable Javascript in his/her browser)</em>.</p>
<p>Put below code just after the <em>&lt;head&gt;</em> tag in your web page:</p>
<pre class="brush: php; title: ; notranslate">
&lt;noscript&gt;
&lt;meta http-equiv=&quot;refresh&quot; content=&quot;0;URL=error-javascript.php&quot; /&gt;
&lt;/noscript&gt;
</pre>
<p>Above code is executed if Javascript is disabled and redirect user to <em>error-javascript.php</em>. We are using <em>&lt;meta&gt;</em> tag for redirection. If Javascript is not disabled, above code will not be executed.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-7217075623453662";
google_ad_slot = "2820701010";
google_ad_width = 336;
google_ad_height = 280;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
<center><font-size="9px">Advertisement</font></center></p>
<h2><strong>Second Tactic- Detect Flash Plugin Installed</strong></h2>
<p>There is a<strong> Javascript solution to detect Flash Plugin</strong> Installed and replace Flash animation with your custom message. In order to accomplish the said task you need to place below Javascript instead of your normal embedded code:</p>
<pre class="brush: jscript; title: ; notranslate">
&lt;script type=&quot;text/javascript&quot;&gt;
&lt;!--
var MM_contentVersion = 9;
var plugin = (navigator.mimeTypes &amp;&amp; navigator.mimeTypes[&quot;application/x-shockwave-flash&quot;]) ? navigator.mimeTypes[&quot;application/x-shockwave-flash&quot;].enabledPlugin : 0;
if ( plugin ) {
		var words = navigator.plugins[&quot;Shockwave Flash&quot;].description.split(&quot; &quot;);
	    for (var i = 0; i &lt; words.length; ++i)
	    {
		if (isNaN(parseInt(words[i])))
		continue;
		var MM_PluginVersion = words[i];
	    }
	var MM_FlashCanPlay = MM_PluginVersion &gt;= MM_contentVersion;
}
else if (navigator.userAgent &amp;&amp; navigator.userAgent.indexOf(&quot;MSIE&quot;)&gt;=0
   &amp;&amp; (navigator.appVersion.indexOf(&quot;Win&quot;) != -1)) {
	document.write('&lt;SCR' + 'IPT LANGUAGE=VBScript\&gt; \n'); //FS hide this from IE4.5 Mac by splitting the tag
	document.write('on error resume next \n');
	document.write('MM_FlashCanPlay = ( IsObject(CreateObject(&quot;ShockwaveFlash.ShockwaveFlash.&quot; &amp; MM_contentVersion)))\n');
	document.write('&lt;/SCR' + 'IPT\&gt; \n');
}
if ( MM_FlashCanPlay ) {
	document.write('&lt;object classid=&quot;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&quot; codebase=&quot;http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0&quot; width=&quot;160&quot; height=&quot;120&quot;&gt;');
    document.write('&lt;param name=&quot;movie&quot; value=&quot;animation.swf&quot;&gt;');
    document.write ('&lt;param name=&quot;quality&quot; value=&quot;high&quot;&gt;');
	document.write ('&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot;&gt;');
    document.write('&lt;embed src=&quot;animation.swf&quot; width=&quot;160&quot; height=&quot;120&quot; quality=&quot;high&quot; pluginspage=&quot;http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;&lt;/object&gt;');
} else{
	document.write('&lt;a href=&quot;./&quot;&gt;&lt;img src=&quot;replaced-image.png&quot; alt=&quot;Flash Plugin not Installed&quot; border=&quot;0&quot;&gt;&lt;/a&gt;');

}
//--&gt;

&lt;/script&gt;
</pre>
<p>Above code detect for Version 9 or greater version of flash plugin. If flash plugin is detected it displays flash animation <em>(animation.swf)</em> else it displays an image <em>(replaced-image.png)</em> instead of flash animation. In the place of image you can write more text and instructions. Everything is upto on you.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-7217075623453662";
google_ad_slot = "4831550702";
google_ad_width = 300;
google_ad_height = 250;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
<center><font-size="9px">Advertisement</font></center></p>
<p>Don&#8217;t forget to share the post on your favorite website. It may also help someone somewhere.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techmug.com/detect-javascript-and-flash-enabled/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Send Emails / Newsletters using HTML templates and PHP</title>
		<link>http://www.techmug.com/send-emails-newsletters-using-html-templates-and-php/</link>
		<comments>http://www.techmug.com/send-emails-newsletters-using-html-templates-and-php/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 17:44:44 +0000</pubDate>
		<dc:creator>Fraz Ahmed</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Newsletter]]></category>
		<category><![CDATA[phpmailer]]></category>
		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://www.techmug.com/?p=23</guid>
		<description><![CDATA[HTML emails look attractive, provide easy calls of action. And importantly creates your brand image in the eyes of your clients. But it becomes very difficult to manage your HTML emails if you want to change the look and feel of your email design. Or you may be interested in changing the content of your [...]]]></description>
			<content:encoded><![CDATA[<p><strong>HTML emails </strong>look attractive, provide easy calls of action. And importantly creates your brand image in the eyes of your clients. But it becomes very difficult to manage your HTML emails if you want to change the look and feel of your email design. Or you may be interested in changing the content of your HTML email without playing with your code.</p>
<p>In this tutorial we will be<strong> sending HTML emails</strong> using PHP. This tutorial will teach you to keep your HTML presentation separate from your PHP code.</p>
<p><span id="more-23"></span></p>
<p style="text-align: center;"><a href="http://www.techmug.com/demo/html-email/html-email.zip"><img class="alignnone size-full wp-image-337" title="Download Source Code" src="http://www.techmug.com/wp-content/uploads/2010/10/btn-source-code.jpg" alt="Download Source Code" width="140" height="90" /></a></p>
<h2><strong>How it works?</strong></h2>
<p>Basically there are only three steps to send your branded HTML emails.</p>
<ol>
<li>Read HTML template file from your specified location.</li>
<li>Replace variables with your data, if any.</li>
<li>Finally send email.</li>
</ol>
<h2><strong>What we need?</strong></h2>
<p>Before we move to define the above steps, its worth to mention the requirements of this tutorial. The first thing we need to send emails is PHPMailer class. To learn more about PHPMailer class please visit the official website <a title="PHPMailer" href="http://phpmailer.worxware.com/" target="_blank">here</a>. And the last other thing is your HTML template file.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-7217075623453662";
google_ad_slot = "2820701010";
google_ad_width = 336;
google_ad_height = 280;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
<center><font-size="9px">Advertisement</font></center></p>
<h2><strong>Step by step learning</strong></h2>
<p>Here are the steps you need to take in order to develop your own email sending program.</p>
<p><strong>First</strong> of all you need to include the PHPMailer class in your code. To do so you use below code:</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php
#####################################
# Include PHP Mailer Class
#####################################
require(&quot;class.phpmailer.php&quot;);
?&gt;
</pre>
<p>Before moving further I would like to introduce two PHP functions we will use in our code. First one is for sending emails and second is for reading your <strong>HTML template</strong> file. First function (sendEmail) accepts five parameters and return false if email is not sent and returns true if email is sent. Parameters are self explanatory in below code:</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php
#####################################
# Function to send email
#####################################
function sendEmail ($fromName, $fromEmail, $toEmail, $subject, $emailBody) {
$mail = new PHPMailer();
$mail-&gt;FromName = $fromName;
$mail-&gt;From = $fromEmail;
$mail-&gt;AddAddress(&quot;$toEmail&quot;);

$mail-&gt;Subject = $subject;
$mail-&gt;Body = $emailBody;
$mail-&gt;isHTML(true);
$mail-&gt;WordWrap = 150;

if(!$mail-&gt;Send()) {
return false;
} else {
return true;
}
}
?&gt;
</pre>
<p>The other function (readTemplateFile) reads your HTML template file and returns all the stuff found in that file. This function accepts only one parameter which is the location of your HTML file. Below is function:</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php
#####################################
# Function to Read a file
# and store all data into a variable
#####################################
function readTemplateFile($FileName) {
$fp = fopen($FileName,&quot;r&quot;) or exit(&quot;Unable to open File &quot;.$FileName);
$str = &quot;&quot;;
while(!feof($fp)) {
$str .= fread($fp,1024);
}
return $str;
}
?&gt;
</pre>
<p><strong>Finally</strong> you need to call and pass parameters to above function to complete the task of sending HTML email. Yeah! really we almost done it. Ok we are using a template which send username and password of a user. Please see HTML template file in downloaded file. We break our last and final step in three pieces:</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php
//Data to be sent (Ideally fetched from Database)
$NameOfUser = &quot;XYZ&quot;;
$Username = &quot;abcdef&quot;;
$password = &quot;123456&quot;;
$UserEmail = &quot;receiver.email@somedomain.com&quot;;
?&gt;
</pre>
<p>First of all we put data into some variables. These variables will be used later in our code. Ideally this data will be fetched from database in real world.</p>
<p>Now we put our HTML template data into other variable:</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php
//Send email to user containing username and password
//Read Template File
$emailBody = readTemplateFile(&quot;template.html&quot;);
?&gt;
</pre>
<p>So we have all our file data in a variable ($emailBody). And we may change anything in this variable. We will use PHP&#8217;s str_replace function to replace the data:</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php
//Replace all the variables in template file
$emailBody = str_replace(&quot;#name#&quot;,$NameOfUser,$emailBody);
$emailBody = str_replace(&quot;#username#&quot;,$Username,$emailBody);
$emailBody = str_replace(&quot;#password#&quot;,$password,$emailBody);
?&gt;
</pre>
<p>To understand the above code we take first line of code. It simply replace #name# with the value of $NameOfuser variable in $emailBody variable. And now our new replaced content is stored in $emailBody variable, so now we can use this content to be passed in our email sending function below:</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php
//Send email
$emailStatus = sendEmail (&quot;Sender Name&quot;, &quot;some.email@yourdomain.com&quot;, $UserEmail, &quot;Email Subject&quot;, $emailBody);
?&gt;
</pre>
<p>If email is not sent successfully, we will display error message else we will show success message:</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php
//If email function return false
if ($emailStatus != 1) {
echo &quot;An error occured while sending email. Please try again later.&quot;;
} else {
echo &quot;Email with account details were sent successfully.&quot;;
}
?&gt;
</pre>
<p>That&#8217;s all! Now you have fully functional code to send your branded emails. If in future you want to change the design of your email, you just have to replace HTML template file. There is no need of changing your PHP code. Ideally you can use this code to send:</p>
<ul>
<li>Newsletters</li>
<li>Registration Details</li>
<li>Forgot Password email</li>
<li>And for anything you want</li>
</ul>
<p>Besides the benefits of using above code there is one shortcoming too of this code. If your user&#8217;s email client does not support <em>HTML email</em>, he/she will not be able to see your fancy deigned email. But there are ways to prevent this shortcoming.</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-7217075623453662";
google_ad_slot = "4831550702";
google_ad_width = 300;
google_ad_height = 250;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
<center><font-size="9px">Advertisement</font></center></p>
<p>Hope so you enjoyed this tutorial. Please feel free to ask or comment for this tutorial. And Don’t forget to share the post on your favorite website. It may also help someone somewhere <img src='http://www.techmug.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Send your <strong>newsletters using HTML templates and PHP</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techmug.com/send-emails-newsletters-using-html-templates-and-php/feed/</wfw:commentRss>
		<slash:comments>26</slash:comments>
		</item>
	</channel>
</rss>

