Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion .env.template
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ QD_EMAIL_SMTP_USE_CRAMMD5=false

# App/Org configs
QD_APP_NAME="Quarterdeck"
QD_APP_LOGO_URI="https://rotational.ai/hs-fs/hubfs/Rotational%20Logo%20Hor%201073x280.png"
QD_APP_LOGO_URI="https://rotational.io/img/apps/quarterdeck/rl_email_header.png"
QD_APP_BASE_URI="http://localhost:8000/"
QD_APP_WELCOME_EMAIL_HTML_PATH="./dev/welcome_email/body.html"
QD_APP_WELCOME_EMAIL_TEXT_PATH="./dev/welcome_email/body.txt"
Expand Down
2 changes: 1 addition & 1 deletion pkg/config/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
// Configures the details of the application that is utilizing Quarterdeck for auth.
type AppConfig struct {
Name string `split_words:"true" default:"Quarterdeck" desc:"the descriptive name of the application"`
LogoURI string `split_words:"true" default:"https://rotational.ai/hs-fs/hubfs/Rotational%20Logo%20Hor%201073x280.png" desc:"the logo for the application"`
LogoURI string `split_words:"true" default:"https://rotational.io/img/apps/quarterdeck/rl_email_header.png" desc:"the logo for the application"`
BaseURI string `split_words:"true" desc:"base URL for the application"`
WelcomeEmail EmailTemplate `split_words:"true"`

Expand Down
9 changes: 1 addition & 8 deletions pkg/emails/templates/partials/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -88,14 +88,7 @@
{{ block "logo" . }}
<tr>
<td style="padding: 20px 0; text-align: center">
<img src="{{ .AppLogoURL }}" width="200" height="auto" alt="Logo" border="0" style="
height: auto;
background: #dddddd;
font-family: sans-serif;
font-size: 16px;
line-height: 20px;
color: #000000;
" />
<img src="{{ .AppLogoURL }}" width="200" height="auto" alt="Logo" border="0" />
</td>
</tr>
{{ end }}
Expand Down
Loading