<?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>email Archives - WardNet</title>
	<atom:link href="https://www.wardnet.co.uk/tag/email/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.wardnet.co.uk/tag/email/</link>
	<description>Infrastructure, ERP and General Technology Blog</description>
	<lastBuildDate>Sun, 11 Jul 2021 11:31:08 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>

<image>
	<url>https://i0.wp.com/www.wardnet.co.uk/wp-content/uploads/2026/01/wp-1767387074640.jpg?fit=32%2C32&#038;ssl=1</url>
	<title>email Archives - WardNet</title>
	<link>https://www.wardnet.co.uk/tag/email/</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">63479081</site>	<item>
		<title>5 Useful SendGrid Tips</title>
		<link>https://www.wardnet.co.uk/5-useful-sendgrid-tips/</link>
		
		<dc:creator><![CDATA[Jonathan Ward]]></dc:creator>
		<pubDate>Sat, 09 May 2020 14:59:24 +0000</pubDate>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[Azure]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[SendGrid]]></category>
		<guid isPermaLink="false">https://www.wardnet.co.uk/?p=607</guid>

					<description><![CDATA[<p>I recently started working on a concept of a message list subscription service, to be integrated directly into new product</p>
<p><a href="https://www.wardnet.co.uk/5-useful-sendgrid-tips/">5 Useful SendGrid Tips</a></p>
]]></description>
										<content:encoded><![CDATA[
<p>I recently started working on a concept of a message list subscription service, to be integrated directly into new product features so that people can add themselves to the list to receive information of updates on specific features. This led me down the path of using Azure Storage and SendGrid, building 2 raw prototype apps (in WinForms at this early stage) to achieve both the subscription and the sending out of data to the subscribers. Writing this on.NetFramework 4.8 with C# in a fairly native way has given me a great way to investigate and utilise the SendGrid platform to send emails to multiple subscribers. </p>



<p>I wanted to share my findings, rather than my code at this stage, and here are my Top 5 SendGrid tips:</p>



<ol class="wp-block-list"><li>Do review Microsoft&#8217;s guide on how to get started with SendGrid via Azure, this simple article gives you a great base on how to set up the back-end and start writing C# around it: <a rel="noreferrer noopener" href="https://docs.microsoft.com/en-us/azure/sendgrid-dotnet-how-to-send-email" target="_blank">https://docs.microsoft.com/en-us/azure/sendgrid-dotnet-how-to-send-email</a></li><li>Use Unsubscribe groups &#8211; these allow you to stay within GDPR in Europe, appending an Unsubscribe and Manage Preferences link to the bottom of the emails that are sent. i.e. </li></ol>



<div class="wp-block-image"><figure class="aligncenter size-large"><img data-recalc-dims="1" decoding="async" width="332" height="47" data-attachment-id="608" data-permalink="https://www.wardnet.co.uk/5-useful-sendgrid-tips/image/" data-orig-file="https://i0.wp.com/www.wardnet.co.uk/wp-content/uploads/2020/05/image.png?fit=332%2C47&amp;ssl=1" data-orig-size="332,47" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="image" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/www.wardnet.co.uk/wp-content/uploads/2020/05/image.png?fit=300%2C42&amp;ssl=1" data-large-file="https://i0.wp.com/www.wardnet.co.uk/wp-content/uploads/2020/05/image.png?fit=332%2C47&amp;ssl=1" src="https://i0.wp.com/www.wardnet.co.uk/wp-content/uploads/2020/05/image.png?resize=332%2C47&#038;ssl=1" alt="" class="wp-image-608" srcset="https://i0.wp.com/www.wardnet.co.uk/wp-content/uploads/2020/05/image.png?w=332&amp;ssl=1 332w, https://i0.wp.com/www.wardnet.co.uk/wp-content/uploads/2020/05/image.png?resize=300%2C42&amp;ssl=1 300w" sizes="(max-width: 332px) 100vw, 332px" /><figcaption>Unsubscribe preferences from SendGrid</figcaption></figure></div>



<ol class="wp-block-list" start="3"><li>Write both plain text and HTML content for your email, I ended up creating an HTML builder so I could convert Email addresses to <code><code data-enlighter-language="html" class="EnlighterJSRAW">&lt;a href="mailto:EmailAddress"></code></code> and any HTTP(s):// links to <code><code data-enlighter-language="html" class="EnlighterJSRAW">&lt;a href:"http://link"></code></code> this was a great experiment with regular expressions. Note, I found that not all Email clients auto-convert, e.g. Outlook will convert an Email address but not a URL. I was creating my body text in a Rich Text Box, so it was just one big string!</li><li>Look into Personalisations (<a href="https://sendgrid.com/docs/for-developers/sending-email/personalizations/" target="_blank" rel="noreferrer noopener">https://sendgrid.com/docs/for-developers/sending-email/personalizations/</a>) these are crucial if you want to customise your output (the emails themselves). I created variables to use in subject and body lines so I could pass in <code><code data-enlighter-language="csharp" class="EnlighterJSRAW">{customer}</code></code> and<code> </code><code data-enlighter-language="csharp" class="EnlighterJSRAW">{product}</code>. SendGrid has a substitution capability which comes as part of personalisation. I&#8217;ll share a snippet of code here, as I found a solution on StackOverflow (<a href="https://stackoverflow.com/a/53292550" target="_blank" rel="noreferrer noopener">https://stackoverflow.com/a/53292550</a>) but it needed a slight tweak, changing the <code><code data-enlighter-language="csharp" class="EnlighterJSRAW">Tos.Add</code></code> to a <code><code data-enlighter-language="csharp" class="EnlighterJSRAW">msg.AddTo</code></code> as the To: Email address needs to be a part of the personalisation, I wasn&#8217;t sure if this was to do with API changes or not! Another tip, if you want the subject to be the same, without substitutions you can use the <code><code data-enlighter-language="csharp" class="EnlighterJSRAW">SetGlobalSubject</code></code> method</li></ol>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:100%">
<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:100%">
<div class="wp-block-group"><div class="wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow">
<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:100%">
<pre class="wp-block-code"><code lang="csharp" class="language-csharp line-numbers"><code data-enlighter-language="csharp" class="EnlighterJSRAW">var personalizationIndex = 0;
                foreach (var subscriber in subscriberEntities)
                {
                    msg.AddTo(new EmailAddress(subscriber.RowKey, subscriber.Name), personalizationIndex);
                    msg.AddSubstitution("{product}", product.Description, personalizationIndex);
                    msg.AddSubstitution("{customer}", subscriber.Name, personalizationIndex);
                    personalizationIndex++;
                    
                }</code></code></pre>



<p></p>
</div>
</div>
</div></div>
</div>
</div>
</div>
</div>



<ol class="wp-block-list" start="5"><li>Create a test email method, that uses the same logic as your core one, but only sends to one email address. You don&#8217;t want to be sending bulk emails out without checking them first!</li></ol>



<p>I hope this new style of thread has been an interesting read, I hope to do more very soon!</p>
<p><a href="https://www.wardnet.co.uk/5-useful-sendgrid-tips/">5 Useful SendGrid Tips</a></p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">607</post-id>	</item>
		<item>
		<title>Linux Virus Scan &#8211; Daily Email Script</title>
		<link>https://www.wardnet.co.uk/linux-virus-scan-daily-email-script/</link>
		
		<dc:creator><![CDATA[Jonathan Ward]]></dc:creator>
		<pubDate>Fri, 24 May 2013 08:06:31 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[email script]]></category>
		<category><![CDATA[email server]]></category>
		<category><![CDATA[FOUND]]></category>
		<category><![CDATA[GREP]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Linux Virus Scan]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[Scan Results]]></category>
		<category><![CDATA[virus scan]]></category>
		<category><![CDATA[virus scanners]]></category>
		<category><![CDATA[viruses]]></category>
		<category><![CDATA[web directories]]></category>
		<guid isPermaLink="false">http://wardnet.co.uk/?p=204</guid>

					<description><![CDATA[<p>Yes, that&#8217;s right, Linux can get viruses too, in fact they can harbour windows based viruses if the system is</p>
<p><a href="https://www.wardnet.co.uk/linux-virus-scan-daily-email-script/">Linux Virus Scan &#8211; Daily Email Script</a></p>
]]></description>
										<content:encoded><![CDATA[<p>Yes, that&#8217;s right, Linux can get viruses too, in fact they can harbour windows based viruses if the system is used as a web and email server! Something I&#8217;ve been becoming more and more familiar with. So, our systems already used ClamAV one of the more popular Linux based virus scanners. But whilst it runs a scan on incoming emails etc. It doesn&#8217;t really give me a nice visual output (no GUI). My solution? Automated daily scan with emailed results&#8230;</p>
<p><span style="font-family: 'courier new', courier; font-size: 12px;">clamscan -r /var/www &gt; /root/scanresults.txt</span></p>
<p><span style="font-family: 'courier new', courier; font-size: 12px;">cat /root/scanresults.txt | mail -s &#8221; Scan Results&#8221; hello@example.com</span></p>
<p><span style="font-family: 'courier new', courier; font-size: 12px;"><em id="__mceDel">cat /root/scanresults.txt | grep FOUND | mail -s &#8220;Viruses Found&#8221; hello@example.com</em></span></p>
<p>So what does this do?</p>
<p>well, it scans the web directories (recursively) for any viruses that are listed in the virus DB (updated twice daily) &#8211; it then puts all the results into a text file. this text file is then read into an email command which is sent to the hello@example.com email address.</p>
<p>However, this isn&#8217;t much use as there are thousands of files and directories, what I really want to know is whether viruses were found&#8230; the solution to this is GREP out the value &#8220;FOUND&#8221; which is appended to the file name if a virus is found to be in it &#8211; this is then read into the same email command as before leaving me a nice list of only the files found with viruses!</p>
<p>I love a nice quick and easy script &#8211; I used cron tab to run this at 00:05 and 12:05 every day!</p>
<p><a href="https://www.wardnet.co.uk/linux-virus-scan-daily-email-script/">Linux Virus Scan &#8211; Daily Email Script</a></p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">204</post-id>	</item>
		<item>
		<title>Exchange 2010 SP2</title>
		<link>https://www.wardnet.co.uk/exchange-2010-sp2/</link>
		
		<dc:creator><![CDATA[Jonathan Ward]]></dc:creator>
		<pubDate>Tue, 06 Dec 2011 08:30:27 +0000</pubDate>
				<category><![CDATA[email]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[management]]></category>
		<category><![CDATA[SP1]]></category>
		<category><![CDATA[SP2]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[upgrade]]></category>
		<guid isPermaLink="false">http://wardnet.co.uk/?p=18</guid>

					<description><![CDATA[<p>Microsoft have just released Exchange 2010 SP2 &#8211; a little over a month since I built both the new email</p>
<p><a href="https://www.wardnet.co.uk/exchange-2010-sp2/">Exchange 2010 SP2</a></p>
]]></description>
										<content:encoded><![CDATA[<p>Microsoft have just released Exchange 2010 SP2 &#8211; a little over a month since I built both the new email servers on SP1 &#8211; how annoying is that! &#8211; anyway, after reading the new features list provided here: <a title="Exchange 2010 SP2 via The Register" href="http://www.theregister.co.uk/2011/12/05/redmond_exchange_2010_sp2/" target="_blank">http://www.theregister.co.uk/2011/12/05/redmond_exchange_2010_sp2/</a> I am not too fussed, and will not be planning an upgrade anytime soon, maybe 6-12 months time I think&#8230;</p>
<p><a href="https://www.wardnet.co.uk/exchange-2010-sp2/">Exchange 2010 SP2</a></p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">18</post-id>	</item>
	</channel>
</rss>
