Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1019237
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T10:58:49+00:00 2026-05-16T10:58:49+00:00

I’m creating mail sender web service. Every 10 second 1 mail sent. My total

  • 0

I’m creating mail sender web service. Every 10 second 1 mail sent. My total mail count 1500. this operation ends after 4.16 hours later (1500*10/60/60).

My web service method is here>>

[WebMethod]
public string BroadcastMail(DataView dv, string title, string body,MailAddress FromAddress, string[] fileattachments)
    {
        SmtpClient client = new SmtpClient("smtp.mysite.com");
        client.EnableSsl = false;
        client.UseDefaultCredentials = true;
        client.Credentials = new NetworkCredential("*********", "********");

        foreach (DataRowView item in dv)
        {
            MailMessage msg = new MailMessage();
            msg.From = FromAddress;
            msg.Subject = title;
            msg.IsBodyHtml = true;
            msg.BodyEncoding = Encoding.UTF8;
            msg.Body = body.AsciiToUnicode();
            msg.To.Add(email);
            client.Send(msg);
            Thread.Sleep(10000);           
        }
    }

You want ask from me. Why you wait 10 second. Because my mail provider agreed that mail account every 1 hour possible to send 300 mail.

I want calling from aspx page.

My question is:
How to call this service from aspx page?

This web service work or not?

You have another idea?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T10:58:49+00:00Added an answer on May 16, 2026 at 10:58 am

    There’s no reason to implement this as a web service, especially as you have a 10 second sleep in it that could occur multiple times which would likely timeout. Also, as a long running process under asp.net, you run the risk of an application pool recycle loosing any mails that have yet to be sent.

    A simpler/better way of handling this would be to store the emails into a database and process them from there, deleting the record from the table once the email has been sent. It would also be more robust if you used something like a Windows Service (not web service) or a console application triggered by a Scheduled Task to execute the code that sends each individual email.

    In summary:

    • Using a web service that sleeps and sends multiple emails could be very unreliable
    • Use a Windows Service or a scheduled task

    Also, your code has the line msg.To.Add(email); but the variable email isn’t declared anywhere?

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.