Skip to content

Commit

Permalink
small tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
potts99 committed Mar 24, 2024
1 parent 5528270 commit d21c794
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/api/src/lib/nodemailer/ticket/create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export async function sendTicketCreate(ticket: any) {

await mail
.sendMail({
from: '"No reply 👻" ' + replyto, // sender address
from: replyto, // sender address
to: ticket.email,
subject: `Ticket ${ticket.id} has just been created & logged`, // Subject line
text: `Hello there, Ticket ${ticket.id}, which you reported on ${ticket.createdAt}, has now been created and logged`, // plain text body
Expand Down
3 changes: 1 addition & 2 deletions apps/client/pages/admin/email-queues/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,8 @@ export default function EmailQueues() {
{item.hostname}
</td>
<td className="px-3 py-4 text-sm ">
{item.hostname}
{item.tls ? "993" : "110"}
</td>
<td className="px-3 py-4 text-sm ">{item.port}</td>
<td className="py-4 pl-3 pr-4 text-right text-sm font-medium sm:pr-0">
<button
type="button"
Expand Down

0 comments on commit d21c794

Please sign in to comment.