Cody,<br><br>This look EXCELLENT.<br><br>I have one question/potential suggestion so far regarding:<br> <br>
    <b>.subjectHTMLFromClassPath(&quot;subject.html.vm&quot;) </b><br>    <b>.templateHTMLFromClassPath(&quot;template.html.vm&quot;) </b><br><br>and related methods.<br><br>Have you considered creating an abstraction here that alows for pluggable template resolvers? Otherwise you have this &quot;explosion&quot; of methods in the interface that may end up causing maintenance woes. However, if you replaced this with something like:<br>
<br>
    <b>.template(new HtmlFromClassPath(&quot;template.html.vm&quot;))</b><br>

    <b>.subject(new HtmlFromClassPath(&quot;subject.html.vm&quot;))</b><b> </b><br><br>People would be empowered to implement a simple interface with limitless extension possibilities.<br><br>Thoughts?<br>~Lincoln<br><br>
<div class="gmail_quote">On Mon, Feb 7, 2011 at 1:57 PM, Dan Allen <span dir="ltr">&lt;<a href="mailto:dan.j.allen@gmail.com">dan.j.allen@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
Seam devs,<div><br></div><div>Cody is looking for some feedback on the mail module [1] before he drafts a reference guide and puts the API on ice.</div><div><br></div><div>Seam mail is important because, let&#39;s face it, the Java Mail API needs a makeover. Thankfully, the CDI programming model offers the necessary hooks to create a modernized mail API capable of deep integration with the Java EE platform (specifically the Java Mail API and container-managed sessions).</div>


<div><br></div><div>Seam Mail offers a fluent API that makes sending e-mail in Java a painless experience. But an e-mail is nothing without the content. That&#39;s why Seam Mail offers several templating options, such as Velocity, as well as an extensible template SPI, to allow you to select your templating solution of choice. With Seam Mail, you&#39;ll be sending e-mail from your application in no time.</div>


<div><br></div><div>Is this how you imagined it would be?</div><div><br></div><div>Basic:<br></div><div><br></div><div><div>   @Inject</div><div>   private Instance&lt;MailMessage&gt; mailMessage;</div></div><div><br></div>


<div><div>   @Inject</div><div>   private Session session;</div></div><div><br></div><div><div>   mailMessage.get()</div><div>         .from(&quot;Seam Framework&quot;, &quot;<a href="mailto:seam@jboss.org" target="_blank">seam@jboss.org</a>&quot;)</div>


<div>         .to(&quot;John Smith&quot;, &quot;<a href="mailto:john.smith@acme.com" target="_blank">john.smith@acme.com</a>&quot;)</div><div>         .subject(&quot;Text Message from Seam Mail - &quot; + java.util.UUID.randomUUID().toString())</div>


<div>         .textBody(text)</div><div>         .send(session);</div></div><div><br></div><div>Velocity:</div><div><br></div><div><div>   @Inject</div><div>   private Instance&lt;VelocityMailMessage&gt; velocityMailMessage;</div>


</div><div><br></div><div><div>   @Inject</div><div>   private Session session;</div></div><div><br></div><div><div>   velocityMailMessage.get().from(&quot;Seam Framework&quot;, &quot;<a href="mailto:seam@jboss.org" target="_blank">seam@jboss.org</a>&quot;)</div>


<div>         .to(person.getName(), person.getEmail())</div><div>         .subject(&quot;HTML Message from Seam Mail - &quot; + java.util.UUID.randomUUID().toString())</div><div>         .templateHTMLFromClassPath(&quot;template.html.vm&quot;)</div>


<div>         .put(&quot;version&quot;, &quot;Seam 3&quot;)</div><div>         .importance(MessagePriority.HIGH)</div><div>         .addAttachment(new URL(&quot;<a href="http://www.seamframework.org/themes/sfwkorg/img/seam_icon_large.png" target="_blank">http://www.seamframework.org/themes/sfwkorg/img/seam_icon_large.png</a>&quot;), &quot;seamLogo.png&quot;, ContentDisposition.INLINE);</div>


<div>         .send(session);</div></div><div><br></div><div>We look forward to your feedback.</div><div><br></div><div>-Dan</div><div><br></div><div>[1] <a href="http://github.com/seam/mail" target="_blank">http://github.com/seam/mail</a></div>


<div><a href="http://seamframework.org/Seam3/Mail" target="_blank">http://seamframework.org/Seam3/Mail</a><br clear="all"><br>-- <br><div>Dan Allen</div>Principal Software Engineer, Red Hat | Author of Seam in Action<br>
Registered Linux User #231597<br>

<br><div><a href="http://www.google.com/profiles/dan.j.allen#about" target="_blank">http://www.google.com/profiles/dan.j.allen#about</a><br><a href="http://mojavelinux.com" target="_blank">http://mojavelinux.com</a><br><a href="http://mojavelinux.com/seaminaction" target="_blank">http://mojavelinux.com/seaminaction</a><br>


</div><br>
</div>
<br>_______________________________________________<br>
seam-dev mailing list<br>
<a href="mailto:seam-dev@lists.jboss.org">seam-dev@lists.jboss.org</a><br>
<a href="https://lists.jboss.org/mailman/listinfo/seam-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/seam-dev</a><br>
<br></blockquote></div><br><br clear="all"><br>-- <br>Lincoln Baxter, III<br><a href="http://ocpsoft.com">http://ocpsoft.com</a><br><a href="http://scrumshark.com">http://scrumshark.com</a><br>&quot;Keep it Simple&quot;<br>