Skip to main content

Notifications

This section describes the BfmChargeSetupNotificationsComponent component.

Usage

You need to import it in your module and use it in your template.

notifications.component.ts
import { BfmChargeSetupNotificationsComponent } from '@celerofinancas/ui-charges';

@Component({
standalone: true,
selector: 'notifications',
imports: [BfmChargeSetupNotificationsComponent],
templateUrl: './notifications.component.html',
})
export class ChargeSetupNotificationsComponent {}

Then, in your template, you can use the component like this:

notifications.component.html
<bfm-notifications-step
[form]="form"
[headerSubtitle]="'Envie e-mails de notificações automáticas da cobrança de boleto (emissão, vencimento, entre outros) para o pagador da cobrança.'"
[headerTitle]="'Notificações ao pagador por e-mail'"
[labelText]="'Deseja ativar as notificações ao pagador?'"
/>

Inputs

The BfmChargeSetupNotificationsComponent component has the following inputs:

form

Notifications form control

Type
FormControl<boolean>

headerSubtitle

Header Component Subtitle

TypeDefault
string'Envie e-mails de notificações automáticas da cobrança de boleto (emissão, vencimento, entre outros) para o pagador da cobrança.'

headerTitle

Header Component Title

TypeDefault
string'Notificações ao pagador por e-mail'

labelText

Label Component Text

TypeDefault
string'Deseja ativar as notificações ao pagador?'

Events

The BfmChargeSetupNotificationsComponent component has no events.