Use organization logo in Meet outbound emails.
Deploy Ladill Meet / deploy (push) Successful in 1m28s

Replace the product email mark with company logo or name in contact-message mail.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-12 20:08:04 +00:00
co-authored by Cursor
parent 585ef5bb11
commit 5b7bb88767
8 changed files with 195 additions and 9 deletions
+4
View File
@@ -17,6 +17,8 @@ class ContactMessageMail extends Mailable
public string $bodyText,
public ?string $fromName = null,
public ?string $replyToAddress = null,
public ?string $logoUrl = null,
public ?string $companyName = null,
) {}
public function envelope(): Envelope
@@ -34,6 +36,8 @@ class ContactMessageMail extends Mailable
with: [
'bodyText' => $this->bodyText,
'fromName' => $this->fromName,
'logoUrl' => $this->logoUrl,
'companyName' => $this->companyName,
],
);
}