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 2017/01/02 22:31:58 UTC

[jira] [Resolved] (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: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_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)