Skip to content

Commit b32c945

Browse files
committed
add dbl information sheet to template
1 parent 62e1c46 commit b32c945

File tree

2 files changed

+20
-4
lines changed

2 files changed

+20
-4
lines changed

src/components/dbl-upload-notification/templates/dbl-upload-email.template.tsx

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,16 +140,32 @@ export function DBLUpload(props: Props) {
140140
<Column>
141141
<Head>
142142
🔗{' '}
143-
<a href={dblFormUrl}>Seed Company DBL Publication Request Form</a>
143+
<a href={dblFormUrl} style={{ backgroundColor: 'yellow' }}>
144+
Seed Company DBL Publication Request Form
145+
</a>
144146
</Head>
147+
<Text>
148+
All of this information can be entered in the form linked above
149+
(with yellow highlight).
150+
</Text>
145151
</Column>
146152
</Section>
147153
<Section>
148154
<Column>
155+
<Head>
156+
🔗{' '}
157+
<a href={useFrontendUrl('/pdfs/dbl-uploads.pdf')}>
158+
Seed Company DBL Information Sheet
159+
</a>
160+
</Head>
149161
<Text>
150-
All of this information can be entered in the form linked above
151-
(with yellow highlight).
162+
Please review the linked information sheet for additional details
163+
about the DBL, the process, and licensing options.
152164
</Text>
165+
</Column>
166+
</Section>
167+
<Section>
168+
<Column>
153169
<Text>
154170
Let me know if you have any questions—I’m happy to assist!
155171
</Text>

src/core/config/config.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ export const makeConfig = (env: EnvironmentService) =>
125125
.optional(true),
126126
notifyDblUpload: env.boolean('NOTIFY_DBL_UPLOAD').optional(false)
127127
? {
128-
replyTo: env.string('DBL_UPLOAD_REPLY_TO').optional(),
128+
replyTo: env.string('EMAIL_REPLY_TO').optional(),
129129
formUrl: env.string('DBL_REQUEST_FORM_URL').optional(),
130130
}
131131
: undefined,

0 commit comments

Comments
 (0)