Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

233 added Email and Sms services #9

Closed
wants to merge 13 commits into from

Conversation

aXayitov
Copy link
Contributor

@aXayitov aXayitov commented Oct 5, 2024

No description provided.

Ramadan1011 and others added 2 commits October 3, 2024 11:38
added error message and set changed to init for code security
@aXayitov aXayitov changed the base branch from master to integration October 5, 2024 12:20
@aXayitov aXayitov changed the title 233 adding Email and Sms service 233 adding Email and Sms services Oct 5, 2024
@aXayitov aXayitov changed the title 233 adding Email and Sms services 233 added Email and Sms services Oct 5, 2024
Copy link
Contributor

@Mirazyzz Mirazyzz left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

correct sms templates, code styling

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

don't push configuration values

public string UserName { get; init; }
public string PhoneNumber { get; init; }
public string? Subject { get; init; }
public string? Code { get; init; } = "12345";
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should this message be sent by default?

Comment on lines 7 to 8
namespace CheckDrive.Domain.Enums;
public enum SmsType
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

empty line

public enum SmsType
{
ForgotPassword,
MessageType
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what type is this?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe NotificationMessage

@@ -35,6 +32,7 @@
<PackageReference Include="Serilog" Version="3.1.1" />
<PackageReference Include="Serilog.AspNetCore" Version="8.0.1" />
<PackageReference Include="Serilog.Sinks.Console" Version="5.0.1" />
<PackageReference Include="Twilio" Version="7.4.0" />
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

do we use this package?

Comment on lines 4 to 5
namespace CheckDrive.Infrastructure.Sms.Factories;
internal interface ISmsMetadataFactory
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

separate with an empty line

Comment on lines 4 to 5
namespace CheckDrive.Infrastructure.Sms.Factories;
internal class SmsMetadataFactory : ISmsMetadataFactory
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

empty line

Comment on lines 11 to 12
};
public SmsMetadata Create(
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

empty line

{
private readonly Dictionary<SmsType, string> smsSubjects = new()
{
{ SmsType.MessageType, "Message" },
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Notification

Comment on lines 35 to 36
// var template = GetTemplate(metadata.SmsType);
// var messageContent = await BuildMessageContent(template, metadata);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

do we need this code?

@Mirazyzz Mirazyzz marked this pull request as draft October 19, 2024 16:01
@Mirazyzz Mirazyzz closed this Oct 19, 2024
@aXayitov aXayitov deleted the 233-adding-email-service branch October 19, 2024 16:02
@aXayitov aXayitov restored the 233-adding-email-service branch October 19, 2024 16:02
@Mirazyzz Mirazyzz deleted the 233-adding-email-service branch January 12, 2025 13:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants