[ 
https://issues.apache.org/jira/browse/EMAIL-164?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Siegfried Goeschl resolved EMAIL-164.
-------------------------------------
    Resolution: Incomplete

No background information available :-(

> 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
>            Assignee: Siegfried Goeschl
>
> 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_addr...@gmail.com")
>     email.setFrom("my_addr...@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)

Reply via email to