-
Notifications
You must be signed in to change notification settings - Fork 20
[PHEE-296A] Email Api Tc #293
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
f93df2b
e045bc0
c9f4c61
b2d47e3
4de4df6
6490bfe
2f7d496
f36e220
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
|
|
||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. is this empty file? |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -271,3 +271,22 @@ fspconfig: | |
| payerfsp2: "gorilla" | ||
|
|
||
| totalvouchers: 30 | ||
|
|
||
|
|
||
| messageGateway: | ||
| contactpoint: "https://messagegateway.sandbox.fynarfin.io" | ||
| endpoint: | ||
| email: "/emails" | ||
|
|
||
| spring: | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. you can ignore this level: spring. we don't need unless we cant avoid it |
||
| mail: | ||
| host: ${EMAIL_URL:localhost} | ||
| port: 3025 | ||
| username: greenmail | ||
| password: greenmail | ||
| properties: | ||
| mail: | ||
| smtp: | ||
| auth: false | ||
| starttls: | ||
| enable: false | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. google smtp requies TLS. can we test this with TLS for more compatibility? |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| package org.mifos.integrationtest.common.dto; | ||
|
|
||
| import java.util.List; | ||
| import lombok.Getter; | ||
| import lombok.Setter; | ||
|
|
||
| @Getter | ||
| @Setter | ||
| public class EmailRequestDTO { | ||
|
|
||
| private List<String> to; | ||
| private String subject; | ||
| private String body; | ||
|
|
||
| public EmailRequestDTO(List<String> to, String subject, String body) { | ||
| this.to = to; | ||
| this.subject = subject; | ||
| this.body = body; | ||
| } | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks like there are lots of formatting changes, you can remove this from this PR