gpt4 book ai didi

c# - 等待来自 SendGrid 的 API 返回代码时应用程序卡住

转载 作者:行者123 更新时间:2023-12-04 10:21:20 26 4
gpt4 key购买 nike

我的应用程序基本上是一个电子邮件客户端。它通常工作正常 - 没有问题或错误。当它向收件人发送电子邮件时,他们成功地收到了邮件。但是,当该异步任务完成时,整个应用程序就会卡住。

我使用的修补程序是删除 await API 响应中的关键字。这有效,但是 使用这种方法您无法获得确定消息是否成功发送的状态代码,因为您没有等待响应。

这是代码:

using System;
using System.IO;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using SendGrid;
using SendGrid.Helpers.Mail;

namespace SendMailClass{
internal class FunctionCall{

#region Getting user info
static bool EmailHasBeenSend = false;
static string Documents = Environment.GetFolderPath(Environment.SpecialFolder
.MyDocuments) + "\\Documents.txt";
static string UserName = File.ReadLines(Documents).Skip(0).Take(1).First();
static string UserEmail = File.ReadLines(Documents).Skip(1).Take(1).First();
#endregion

public static void SendFunction(string Recipient, string SubjectVariable,
string CC, string BCC, String Messange,string FileName,
string AttachmentPath)
{
Execute(Recipient, SubjectVariable ,CC,BCC, Messange ,FileName,
AttachmentPath).Wait();
}

static async Task Execute(string Recipient, string SubjectVariable,
string CC, string BCC, string Messange,string FileName,
string AttachmentPath)
{
#region Email Values
var apiKey = Environment.GetEnvironmentVariable("InMail_Api_Key");
var client = new SendGridClient(apiKey);
var from = new EmailAddress(UserEmail, UserName);
var subject = SubjectVariable == "" ? "(No subject)" : SubjectVariable;
var to = new EmailAddress(Recipient);
var plainTextContent = Messange == "" ? " " : Messange; ;
var htmlContent = Messange;
#endregion

var Message = MailHelper.CreateSingleEmail(from, to, subject,
plainTextContent, htmlContent);

#region Attachment
if (AttachmentPath != "") {
var bytes = System.IO.File.ReadAllBytes(AttachmentPath);
var File = Convert.ToBase64String(bytes);
Message.AddAttachment(FileName, File);
}
#endregion

/*
#region CC/BCC
if (CC != "") {
Message.AddCcs("anemail@example.com");
}
if (BCC != ""){
Message.AddBccs("anemail@example.com")}
#endregion
*/

var response =await client.SendEmailAsync(Message);
//var response =client.SendEmailAsync(Message); ---> the hotfix
}
}
}

调试后,我得到的唯一结果来自调试器:

The thread --- has exited with code 0 (0x0).



在断点处:

The APIResponse is equal to NULL



它为什么会导致应用程序卡住没有任何意义。

最佳答案

我已经提到我的最后一个修补程序是:APIResponse =client.SendEmailAsync(Message);
我发现这是解决问题:

APIResponse = await client.SendEmailAsync(Message).ConfigureAwait(false);

在确定这是最佳解决方案之前,我想对其进行更多测试。
到目前为止,回复是 接受 (如果电子邮件格式正确)和 如果连接未激活(没有互联网)。

关于c# - 等待来自 SendGrid 的 API 返回代码时应用程序卡住,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60830760/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com