Skip to content

Commit

Permalink
fix: exports
Browse files Browse the repository at this point in the history
  • Loading branch information
vanlooverenkoen committed Nov 30, 2024
1 parent ab6fa15 commit ce956a6
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
## Feature

- Added `DelimiterVariableReplacer` with `{{` as prefix and `}}` as suffix by default
- Export HtmlMailTemplates & HtmlMailTemplate

## CI

Expand All @@ -15,6 +16,7 @@
## Fix

- Fixed the variable replacement in the email template.
- imports

## Docs

Expand Down
3 changes: 1 addition & 2 deletions bin/impaktfull_mailer_secrets.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/// Change the extension to .dart
/// Update the brevoEmail & brevoPassword to use the example
/// Change the extension to .dart
class ImpaktfullMailerSecrets {
ImpaktfullMailerSecrets._();

Expand Down
2 changes: 2 additions & 0 deletions lib/impaktfull_mailer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ export 'src/service/sender/noop_mail_sender_service.dart';

// Templates
export 'src/templates/mail_template.dart';
export 'src/templates/html_mail_template.dart';
export 'src/templates/html_mail_templates.dart';
export 'src/templates/order_confirmation/order_confirmation_mail_template.dart';

// Variable replacer
Expand Down
2 changes: 1 addition & 1 deletion lib/src/service/sender/smtp_mail_sender_service.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import 'package:impaktfull_mailer/impaktfull_mailer.dart';
import 'package:impaktfull_mailer/src/service/sender/mail_sender_service.dart';
import 'package:mailer/smtp_server.dart';

abstract class SmtpMailSenderService extends MailSenderService {
Expand Down
2 changes: 1 addition & 1 deletion lib/src/templates/html_mail_template.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import 'package:impaktfull_mailer/impaktfull_mailer.dart';
import 'package:impaktfull_mailer/src/templates/html_mail_templates.dart';
import 'package:impaktfull_mailer/src/templates/mail_template.dart';

abstract class HtmlMailTemplate extends MailTemplate {
final String templateName;
Expand Down

0 comments on commit ce956a6

Please sign in to comment.