Skip to content

Commit

Permalink
update mailer nuget (#404)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmh authored Sep 20, 2024
1 parent 025320b commit 83ca3a8
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion Demo/Demo.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.1.1" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="6.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="6.0.27" />
<!-- <PackageReference Include="Coravel" Version="3.3.0" /> -->
</ItemGroup>

Expand Down
21 changes: 0 additions & 21 deletions Demo/appsettings.Development.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,26 +9,5 @@
"System": "Information",
"Microsoft": "Information"
}
},
"Coravel": {
"Mail": {
"Driver": "filelog",
"Host": "smtp.mailtrap.io",
"Port": 2525,
"Username": "6ff1ca792222fe",
"Password": "4e621729c80e34",
"From": {
"Address": "global@test.com",
"Name": "Always Sent From Me"
},

"LogoSrc": "https://www.google.ca/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png",
"CompanyAddress": "1111 My Company's Address",
"CompanyName": "My Company's Name",
"PrimaryColor": "#539be2"
},
"Queue": {
"ConsummationDelay": 5
}
}
}
23 changes: 22 additions & 1 deletion Demo/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,26 @@
"Default": "Information"
}
},
"AllowedHosts": "*"
"AllowedHosts": "*",
"Coravel": {
"Mail": {
"Driver": "SMTP",
"Host": "sandbox.smtp.mailtrap.io",
"Port": 2525,
"Username": "bfa5b439fdd631",
"Password": "f81b8a8227cfda",
"From": {
"Address": "global@test.com",
"Name": "Always Sent From Me"
},

"LogoSrc": "https://www.google.ca/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png",
"CompanyAddress": "1111 My Company's Address",
"CompanyName": "My Company's Name",
"PrimaryColor": "#539be2"
},
"Queue": {
"ConsummationDelay": 5
}
}
}
2 changes: 1 addition & 1 deletion Src/Coravel.Mailer/Coravel.Mailer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>.net6.0</TargetFramework>
<AddRazorSupportForMvc>True</AddRazorSupportForMvc>
<PackageId>Coravel.Mailer</PackageId>
<Version>5.0.1</Version>
<Version>6.0.0</Version>
<Authors>James Hickey</Authors>
<Company>-</Company>
<Title>Coravel.Mailer</Title>
Expand Down

0 comments on commit 83ca3a8

Please sign in to comment.