Skip to content

Commit

Permalink
BookLib: Fix EmailService
Browse files Browse the repository at this point in the history
  • Loading branch information
jbe2277 committed Nov 25, 2023
1 parent 5d81e07 commit c7907e2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public void CreateNewEmail(string toEmailAddress)
{
try
{
Process.Start("mailto:" + toEmailAddress);
Process.Start(new ProcessStartInfo("mailto:" + toEmailAddress) { UseShellExecute = true });
}
catch (Exception e)
{
Expand Down

0 comments on commit c7907e2

Please sign in to comment.