Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions app/mail/DefaultMails.scala
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,9 @@ class DefaultMails @Inject()(conf: WkConf) {
from = defaultSender,
subject = "Help requested // Feedback provided",
bodyHtml = html.mail.help(user.name, organizationName, message, currentUrl, additionalFooter).body,
recipients = List("[email protected]", userEmail)
recipients = List("[email protected]"),
ccRecipients = List(userEmail),
replyTo = List(userEmail, "[email protected]")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@normanrz Shouldn't this be webknossos-support A T scalableminds.com?

)

def extendPricingPlanMail(user: User, userEmail: String): Mail =
Expand Down Expand Up @@ -150,7 +152,8 @@ class DefaultMails @Inject()(conf: WkConf) {
subject = "Request to upgrade WEBKNOSSOS plan",
bodyHtml =
html.mail.upgradePricingPlanRequest(user.name, userEmail, organizationName, messageBody, additionalFooter).body,
recipients = List("[email protected]")
recipients = List("[email protected]"),
replyTo = List(userEmail, "[email protected]")
)

def jobSuccessfulGenericMail(user: User,
Expand Down
2 changes: 1 addition & 1 deletion app/mail/Mail.scala
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ case class Mail(from: String = "",
ccRecipients: List[String] = List(),
bccRecipients: List[String] = List(),
contentType: Option[String] = None,
replyTo: Option[String] = None,
replyTo: List[String] = List(),
charset: String = "utf-8",
headers: Map[String, String] = Map[String, String]())