Add first draft of mailer integration
This adds a bunch of stuff, including setting the organization's Lob sender address ID, inserting mailer/compliance_report relationships, adding external id from Lob (or maybe some other provider) and attempting to load up the pool feature for a site.
This commit is contained in:
parent
84da2bdc7d
commit
a6f9396760
21 changed files with 1050 additions and 263 deletions
|
|
@ -4,6 +4,13 @@
|
|||
package dberrors
|
||||
|
||||
var ComplianceReportRequestMailerErrors = &complianceReportRequestMailerErrors{
|
||||
ErrUniqueComplianceReportRequestMailerPkey: &UniqueConstraintError{
|
||||
schema: "",
|
||||
table: "compliance_report_request_mailer",
|
||||
columns: []string{"id"},
|
||||
s: "compliance_report_request_mailer_pkey",
|
||||
},
|
||||
|
||||
ErrUniqueComplianceReportRequestMaiComplianceReportRequestId_Key: &UniqueConstraintError{
|
||||
schema: "",
|
||||
table: "compliance_report_request_mailer",
|
||||
|
|
@ -13,5 +20,7 @@ var ComplianceReportRequestMailerErrors = &complianceReportRequestMailerErrors{
|
|||
}
|
||||
|
||||
type complianceReportRequestMailerErrors struct {
|
||||
ErrUniqueComplianceReportRequestMailerPkey *UniqueConstraintError
|
||||
|
||||
ErrUniqueComplianceReportRequestMaiComplianceReportRequestId_Key *UniqueConstraintError
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue