-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ee78322
commit cac3e1a
Showing
9 changed files
with
47 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
...ruit-Infrastructure/src/main/java/com/econovation/recruitinfrastructure/ncp/Response.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package com.econovation.recruitinfrastructure.ncp; | ||
|
||
import lombok.Builder; | ||
import lombok.Getter; | ||
import lombok.Setter; | ||
|
||
@Getter | ||
@Setter | ||
@Builder | ||
public class Response { | ||
private String requestId; | ||
private int count; | ||
} |
12 changes: 12 additions & 0 deletions
12
...it-Infrastructure/src/main/java/com/econovation/recruitinfrastructure/ses/Parameters.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.econovation.recruitinfrastructure.ses; | ||
|
||
import lombok.Getter; | ||
import lombok.Setter; | ||
|
||
@Getter | ||
@Setter | ||
public class Parameters { | ||
private String customer_name; | ||
private String BEFORE_GRADE; | ||
private String AFTER_GRADE; | ||
} |
8 changes: 6 additions & 2 deletions
8
...tructure/src/main/java/com/econovation/recruitinfrastructure/ses/RecipientForRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
package com.econovation.recruitinfrastructure.ses; | ||
|
||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
import lombok.Builder; | ||
import lombok.Getter; | ||
import lombok.Setter; | ||
|
||
@Getter | ||
@Builder | ||
public class RecipientForRequest { | ||
private String address; | ||
private String name; | ||
private String type = "R"; | ||
private Object parameters; | ||
} | ||
|
||
@JsonInclude(JsonInclude.Include.NON_NULL) | ||
private Parameters parameters; // 매개변수 모델 추가 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,10 +9,8 @@ | |
@Getter | ||
@Builder | ||
public class SendRawEmailDto { | ||
// Replace [email protected] with your "From" address. | ||
// This address must be verified with Amazon SES. | ||
private String senderAddress = "에코노베이션 Recruit팀 <[email protected]>"; | ||
private String senderAddress; | ||
private String title; | ||
private String body; | ||
private List<RecipientForRequest> recipients; | ||
} | ||
} |