You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Siegfried Goeschl (JIRA)" <ji...@apache.org> on 2016/11/10 20:23:58 UTC

[jira] [Commented] (EMAIL-164) Setting Alias using setFrom of HtmlEmail is not working when calling from Scala

    [ https://issues.apache.org/jira/browse/EMAIL-164?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15655041#comment-15655041 ] 

Siegfried Goeschl commented on EMAIL-164:
-----------------------------------------

Mhmm, so what does not work?

> Setting Alias using setFrom of HtmlEmail is not working when calling from Scala
> -------------------------------------------------------------------------------
>
>                 Key: EMAIL-164
>                 URL: https://issues.apache.org/jira/browse/EMAIL-164
>             Project: Commons Email
>          Issue Type: Bug
>    Affects Versions: 1.4
>            Reporter: prax net
>
> I am using Commons Email API (v1.4) in my Scala project
> in SCALA's build.sbt i have included following line
> "org.apache.commons"          % "commons-email"           % "1.4",
> Following is EMAIL Function
>  @throws(classOf[EmailException])
>   @throws(classOf[Exception])
>   def createHTMLEmailMessage(htmlContent: String): EmailMessage = {
>     val email = new HtmlEmail
>     // alternative message if the client does not support html
>    
>     email.setHtmlMsg(htmlContent)
>     email.addTo("TO_address@gmail.com")
>     email.setFrom("MY_address@GMAIL.com", "MY REPORTS")
>     email.setHostName("MY_HOSTNAME")
>     email.setSmtpPort(587)
>     email.setAuthentication("USERNAME","PASSWORD")
>     email.setStartTLSEnabled(true)
>     email.setSSLOnConnect(false)
>     email.setSubject("Subject")
>     val emailMsg = EmailMessage(email)
>     emailMsg
>   }



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)