Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ management processes.
## 📋 Features

- 🎫 **Event Creation & Management** - Create and manage events with detailed information
- 🔍 **Advanced Search & Filtering** - Find events easily
- 👥 **User Authentication** - Google OAuth integration
- 📱 **QR Code Support** - Generate and scan QR codes for events
- 🖼️ **Image Management** - Upload and compress event images
- 📊 **Data Export** - Export event data to CSV
- 📧 **Email Notifications** - Automated email system
- 📱 **Progressive Web App** - Mobile-friendly experience
- 🔍 **Advanced Search & Filtering** - Find events easily
- 📧 **Email Notifications** - Automated email system to receive tickets
- 📱 **Progressive Web App** - Mobile-friendly experience, can be installed as mobile app.

## 🚀 Quick Start

Expand Down
4 changes: 2 additions & 2 deletions src/Evently.Server/Features/Emails/Services/EmailAdapter.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using Evently.Server.Common.Domains.Interfaces;
using Evently.Server.Common.Domains.Models;
using Evently.Server.Common.Extensions;
using MailKit.Net.Smtp;
using Microsoft.Extensions.Options;
using MimeKit;
using LoggerExtension=Evently.Server.Common.Extensions.LoggerExtension;

namespace Evently.Server.Features.Emails.Services;

Expand All @@ -17,7 +17,7 @@ public async Task SendEmailAsync(string senderEmail, string recipientEmail, stri
try {
await SendEmail(emailMessage);
} catch (Exception ex) {
LoggerExtension.LogCallbackUrl(logger, ex.Message);
logger.LogCallbackUrl(ex.Message);
}
}

Expand Down