SendGrid taking too long to send email Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) The Ask Question Wizard is Live! Data science time! April 2019 and salary with experience Should we burninate the [wrap] tag?await vs Task.Wait - Deadlock?Sending email in .NET through GmailUsing Asp.Net to SendAsync emails but Page still waits?Can't send email through SendGridSynchronously calling async method - Calling task.Result is making my code deadlockSending email using SendGrid take long timeSending emails as company domain from SendGridHow to send email using SendGridSendGrid Send Email Rate LimitSending simple email on Azure with SendgridSendgrid to send email to distribution list
Should I discuss the type of campaign with my players?
Can Pao de Queijo, and similar foods, be kosher for Passover?
"Seemed to had" is it correct?
What is this single-engine low-wing propeller plane?
How to recreate this effect in Photoshop?
What are the pros and cons of Aerospike nosecones?
Stars Make Stars
Should I use Javascript Classes or Apex Classes in Lightning Web Components?
What makes black pepper strong or mild?
How to bypass password on Windows XP account?
I am not a queen, who am I?
WAN encapsulation
How much radiation do nuclear physics experiments expose researchers to nowadays?
What do you call a plan that's an alternative plan in case your initial plan fails?
Is there a "higher Segal conjecture"?
Doubts about chords
When -s is used with third person singular. What's its use in this context?
List *all* the tuples!
What does the "x" in "x86" represent?
When is phishing education going too far?
Check which numbers satisfy the condition [A*B*C = A! + B! + C!]
How to motivate offshore teams and trust them to deliver?
Is high blood pressure ever a symptom attributable solely to dehydration?
Do you forfeit tax refunds/credits if you aren't required to and don't file by April 15?
SendGrid taking too long to send email
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
The Ask Question Wizard is Live!
Data science time! April 2019 and salary with experience
Should we burninate the [wrap] tag?await vs Task.Wait - Deadlock?Sending email in .NET through GmailUsing Asp.Net to SendAsync emails but Page still waits?Can't send email through SendGridSynchronously calling async method - Calling task.Result is making my code deadlockSending email using SendGrid take long timeSending emails as company domain from SendGridHow to send email using SendGridSendGrid Send Email Rate LimitSending simple email on Azure with SendgridSendgrid to send email to distribution list
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I'm using the following code to send a verification mail to a user from a asmx
webservice hosted in azure
static async Task<bool> Execute(string code)
try
var client = new SendGridClient("mykey");
var msg = new SendGridMessage()
From = new EmailAddress("test@example.com", "DX Team"),
Subject = "Here is your code: "+code,
PlainTextContent = "Hello, Email!",
HtmlContent = "<strong>Hello, Email!</strong>"
;
msg.AddTo(new EmailAddress("testuser@test.com", "Test User"));
var response = await client.SendEmailAsync(msg).ConfigureAwait(false);
if( response.StatusCode == System.Net.HttpStatusCode.Accepted)
return true;
else
return false;
catch(Exception error)
return false;
[WebMethod]
public Boolean sendemail(string code)
var task = Execute(code);//Just call the method which will return the Task<List<object>>.
task.Wait();//Call Wait on the task. This will hold the execution until complete execution is done.
return(task.Result);
The webmethod is called from a desktop application.The application does not wait for the email to be send and i only get the mails after 2-3 minutes.
How can i solve this issue?
Update:
c# azure web-services asmx sendgrid
|
show 1 more comment
I'm using the following code to send a verification mail to a user from a asmx
webservice hosted in azure
static async Task<bool> Execute(string code)
try
var client = new SendGridClient("mykey");
var msg = new SendGridMessage()
From = new EmailAddress("test@example.com", "DX Team"),
Subject = "Here is your code: "+code,
PlainTextContent = "Hello, Email!",
HtmlContent = "<strong>Hello, Email!</strong>"
;
msg.AddTo(new EmailAddress("testuser@test.com", "Test User"));
var response = await client.SendEmailAsync(msg).ConfigureAwait(false);
if( response.StatusCode == System.Net.HttpStatusCode.Accepted)
return true;
else
return false;
catch(Exception error)
return false;
[WebMethod]
public Boolean sendemail(string code)
var task = Execute(code);//Just call the method which will return the Task<List<object>>.
task.Wait();//Call Wait on the task. This will hold the execution until complete execution is done.
return(task.Result);
The webmethod is called from a desktop application.The application does not wait for the email to be send and i only get the mails after 2-3 minutes.
How can i solve this issue?
Update:
c# azure web-services asmx sendgrid
4
Do you mean your code takes 2-3 minutes to execute, or it takes 2-3 minutes for you to get the e-mails? We've seen delays as much as 5 minutes between an e-mail being accepted by their API and being processed (you can see this from the SendGrid dashboard). If it's the latter, there's not much you can do.
– John
Mar 22 at 8:08
Also, fyi.
– John
Mar 22 at 8:09
@John 2-3 minutes to get the emails.The code does not wait i guess.
– techno
Mar 22 at 9:07
You could refer to this article to troubleshoot Delays.
– Joey Cai
Mar 22 at 9:11
2
2-3 mintes to get emails delivered is not bad. It all depends on network and intermediate services you have. With my corporate spam filter I've seen emails delayed by 10-15 minutes. Nothing much you can do about it - emails are not instant.
– trailmax
Mar 22 at 9:18
|
show 1 more comment
I'm using the following code to send a verification mail to a user from a asmx
webservice hosted in azure
static async Task<bool> Execute(string code)
try
var client = new SendGridClient("mykey");
var msg = new SendGridMessage()
From = new EmailAddress("test@example.com", "DX Team"),
Subject = "Here is your code: "+code,
PlainTextContent = "Hello, Email!",
HtmlContent = "<strong>Hello, Email!</strong>"
;
msg.AddTo(new EmailAddress("testuser@test.com", "Test User"));
var response = await client.SendEmailAsync(msg).ConfigureAwait(false);
if( response.StatusCode == System.Net.HttpStatusCode.Accepted)
return true;
else
return false;
catch(Exception error)
return false;
[WebMethod]
public Boolean sendemail(string code)
var task = Execute(code);//Just call the method which will return the Task<List<object>>.
task.Wait();//Call Wait on the task. This will hold the execution until complete execution is done.
return(task.Result);
The webmethod is called from a desktop application.The application does not wait for the email to be send and i only get the mails after 2-3 minutes.
How can i solve this issue?
Update:
c# azure web-services asmx sendgrid
I'm using the following code to send a verification mail to a user from a asmx
webservice hosted in azure
static async Task<bool> Execute(string code)
try
var client = new SendGridClient("mykey");
var msg = new SendGridMessage()
From = new EmailAddress("test@example.com", "DX Team"),
Subject = "Here is your code: "+code,
PlainTextContent = "Hello, Email!",
HtmlContent = "<strong>Hello, Email!</strong>"
;
msg.AddTo(new EmailAddress("testuser@test.com", "Test User"));
var response = await client.SendEmailAsync(msg).ConfigureAwait(false);
if( response.StatusCode == System.Net.HttpStatusCode.Accepted)
return true;
else
return false;
catch(Exception error)
return false;
[WebMethod]
public Boolean sendemail(string code)
var task = Execute(code);//Just call the method which will return the Task<List<object>>.
task.Wait();//Call Wait on the task. This will hold the execution until complete execution is done.
return(task.Result);
The webmethod is called from a desktop application.The application does not wait for the email to be send and i only get the mails after 2-3 minutes.
How can i solve this issue?
Update:
c# azure web-services asmx sendgrid
c# azure web-services asmx sendgrid
edited Mar 22 at 9:13
techno
asked Mar 22 at 8:06
technotechno
1,8481148105
1,8481148105
4
Do you mean your code takes 2-3 minutes to execute, or it takes 2-3 minutes for you to get the e-mails? We've seen delays as much as 5 minutes between an e-mail being accepted by their API and being processed (you can see this from the SendGrid dashboard). If it's the latter, there's not much you can do.
– John
Mar 22 at 8:08
Also, fyi.
– John
Mar 22 at 8:09
@John 2-3 minutes to get the emails.The code does not wait i guess.
– techno
Mar 22 at 9:07
You could refer to this article to troubleshoot Delays.
– Joey Cai
Mar 22 at 9:11
2
2-3 mintes to get emails delivered is not bad. It all depends on network and intermediate services you have. With my corporate spam filter I've seen emails delayed by 10-15 minutes. Nothing much you can do about it - emails are not instant.
– trailmax
Mar 22 at 9:18
|
show 1 more comment
4
Do you mean your code takes 2-3 minutes to execute, or it takes 2-3 minutes for you to get the e-mails? We've seen delays as much as 5 minutes between an e-mail being accepted by their API and being processed (you can see this from the SendGrid dashboard). If it's the latter, there's not much you can do.
– John
Mar 22 at 8:08
Also, fyi.
– John
Mar 22 at 8:09
@John 2-3 minutes to get the emails.The code does not wait i guess.
– techno
Mar 22 at 9:07
You could refer to this article to troubleshoot Delays.
– Joey Cai
Mar 22 at 9:11
2
2-3 mintes to get emails delivered is not bad. It all depends on network and intermediate services you have. With my corporate spam filter I've seen emails delayed by 10-15 minutes. Nothing much you can do about it - emails are not instant.
– trailmax
Mar 22 at 9:18
4
4
Do you mean your code takes 2-3 minutes to execute, or it takes 2-3 minutes for you to get the e-mails? We've seen delays as much as 5 minutes between an e-mail being accepted by their API and being processed (you can see this from the SendGrid dashboard). If it's the latter, there's not much you can do.
– John
Mar 22 at 8:08
Do you mean your code takes 2-3 minutes to execute, or it takes 2-3 minutes for you to get the e-mails? We've seen delays as much as 5 minutes between an e-mail being accepted by their API and being processed (you can see this from the SendGrid dashboard). If it's the latter, there's not much you can do.
– John
Mar 22 at 8:08
Also, fyi.
– John
Mar 22 at 8:09
Also, fyi.
– John
Mar 22 at 8:09
@John 2-3 minutes to get the emails.The code does not wait i guess.
– techno
Mar 22 at 9:07
@John 2-3 minutes to get the emails.The code does not wait i guess.
– techno
Mar 22 at 9:07
You could refer to this article to troubleshoot Delays.
– Joey Cai
Mar 22 at 9:11
You could refer to this article to troubleshoot Delays.
– Joey Cai
Mar 22 at 9:11
2
2
2-3 mintes to get emails delivered is not bad. It all depends on network and intermediate services you have. With my corporate spam filter I've seen emails delayed by 10-15 minutes. Nothing much you can do about it - emails are not instant.
– trailmax
Mar 22 at 9:18
2-3 mintes to get emails delivered is not bad. It all depends on network and intermediate services you have. With my corporate spam filter I've seen emails delayed by 10-15 minutes. Nothing much you can do about it - emails are not instant.
– trailmax
Mar 22 at 9:18
|
show 1 more comment
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55295282%2fsendgrid-taking-too-long-to-send-email%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55295282%2fsendgrid-taking-too-long-to-send-email%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
4
Do you mean your code takes 2-3 minutes to execute, or it takes 2-3 minutes for you to get the e-mails? We've seen delays as much as 5 minutes between an e-mail being accepted by their API and being processed (you can see this from the SendGrid dashboard). If it's the latter, there's not much you can do.
– John
Mar 22 at 8:08
Also, fyi.
– John
Mar 22 at 8:09
@John 2-3 minutes to get the emails.The code does not wait i guess.
– techno
Mar 22 at 9:07
You could refer to this article to troubleshoot Delays.
– Joey Cai
Mar 22 at 9:11
2
2-3 mintes to get emails delivered is not bad. It all depends on network and intermediate services you have. With my corporate spam filter I've seen emails delayed by 10-15 minutes. Nothing much you can do about it - emails are not instant.
– trailmax
Mar 22 at 9:18