<?xml version="1.0" encoding="utf-8"?> 
<rss version="2.0"
  xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
  xmlns:atom="http://www.w3.org/2005/Atom">

<channel>

<title>Discover Docker, K8s and Hashicorp Nomad with Maksym Prokopov: posts tagged mail</title>
<link>https://blog.it-premium.com.ua/tags/mail/</link>
<description>The blog about containerisation, virtual machines and useful shell snippets and findings</description>
<author></author>
<language>en</language>
<generator>Aegea 11.3 (v4134)</generator>

<itunes:subtitle>The blog about containerisation, virtual machines and useful shell snippets and findings</itunes:subtitle>
<itunes:image href="" />
<itunes:explicit></itunes:explicit>

<item>
<title>Testing sending mail from your application like a PRO</title>
<guid isPermaLink="false">188</guid>
<link>https://blog.it-premium.com.ua/all/testing-sending-mail-from-your-application-like-a-pro/</link>
<pubDate>Fri, 24 Nov 2017 13:18:57 +0100</pubDate>
<author></author>
<comments>https://blog.it-premium.com.ua/all/testing-sending-mail-from-your-application-like-a-pro/</comments>
<description>
&lt;p&gt;Here is (&lt;a href="https://hub.docker.com/r/schickling/mailcatcher/"&gt;https://hub.docker.com/r/schickling/mailcatcher/&lt;/a&gt; docker container) you can use for testing mail sending from your lovely application.&lt;/p&gt;
&lt;p&gt;add to your docker-compose.yml&lt;/p&gt;
&lt;pre class="e2-text-code"&gt;&lt;code class=""&gt;mail:
  image: schickling/mailcatcher
  ports:
     - 1080:1080&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Do not forget to link this container to your app container, then use SMTP settings:&lt;/p&gt;
&lt;pre class="e2-text-code"&gt;&lt;code class=""&gt;STMP: 
  server: mail
  port: 1025&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;and voila!&lt;/p&gt;
&lt;p&gt;Open your browser at &lt;a href="http://host:1080"&gt;http://host:1080&lt;/a&gt; and enjoy with preview of caught emails.&lt;/p&gt;
</description>
</item>


</channel>
</rss>