<app-button [label]="'HEADER.LABEL' | transloco" (clickEvent)="mailtoWithSubject()" />
public mailtoWithSubject(): void {
const email = 'hello@bello.hu';
const subject = 'Ajánlatot kérek';
// encodeURIComponent, hogy a szóköz és ékezetek is helyesen menjenek át
const mailtoUrl = `mailto:${email}?subject=${encodeURIComponent(subject)}`;
window.location.href = mailtoUrl;
}