givepraise / praise

Praise community contributions to build a culture of giving and gratitude.
https://givepraise.xyz
GNU General Public License v3.0
37 stars 21 forks source link

Send welcome email when creating a Praise community #1047

Open kristoferlund opened 1 year ago

kristoferlund commented 1 year ago
kristoferlund commented 1 year ago

Sendgrid

kristoferlund commented 1 year ago

When interacting with the service you should be able to submit a template and some data.

Perhaps like this?

template = "welcome-email.md"

data = {
  username: "Mohammad"
}

emailService.sendEmail(template, data);

@mohammadranjbarz sounds ok?

mohammadranjbarz commented 1 year ago

When interacting with the service you should be able to submit a template and some data.

  • Template is a template key or a filename
  • Data is merged with template, for example {user} is replaced with Mohammad

Perhaps like this?

template = "welcome-email.md"

data = {
  username: "Mohammad"
}

emailService.sendEmail(template, data);

@mohammadranjbarz sounds ok?

Yeah seems good, will look at it