<div dir="ltr">I want to send e-mail from Python. The code below sends e-mail from Ruby and does not require having your e-mail password in clear text. <div><br></div><div>require 'mail'</div><div><br></div><div><div>    Mail.deliver do</div><div>      from      '<a href="mailto:user@gmail.com">user@gmail.com</a>'</div><div>      to          '<a href="mailto:trigger@recipe.ifttt.com">trigger@recipe.ifttt.com</a>'</div><div>      subject  '#1235'</div><div>      body     "Request from: #{name}."</div><div>    end</div><div><br></div><div>Is there a similar way to send e-mail from Python without requiring your e-mail password in clear text in the code?</div><div><br></div><div>Thanks,</div><div>Shane</div><div><br></div>-- <br><div class="gmail_signature"><div dir="ltr"><span style="color:rgb(0,0,0);font-family:HelveticaNeue-Light,'Helvetica Neue Light','Helvetica Neue',Helvetica,Arial,'Lucida Grande',sans-serif;font-size:16px">A blog about some of my projects.  <a href="http://fettricks.blogspot.com/" target="_blank">http://fettricks.blogspot.com/</a></span><br></div></div>
</div></div>