smtp

I'm looking for recomendations for ActiveX Components for processing emails.

I'm looking for ActiveX components that can easily: get and send emails via SMTP and POP3 strip out and save attachments. Convert RTF (Outlook emails) to HTML Sanitize HTML. What components would you recommend? What components do you use? ...

How do I configure SQL Server 2005 Reporting Services (SSRS) to email a report via a remote SMTP server?

How do I configure SSRS/Windows Server 2003, so that I can setup email delivery via a remote SMTP server that requires username and password. I can configure SSRS with an SMTP address and other parameters, but nowhere is it possible to configure it with smtp username and password. I have hunted around, but can only find vague referenc...

Can I configure SMTP in IIS, so it relays to a remote SMTP server?

I want to configure SMTP on my web server, so that any email sent through the SMTP server is relayed to a remote SMTP Server. The IIS SMTP server would have to use SMTP authentication, and use the host name, username and password (as if configuring a normal email client). Does anybody know if this is possible? ...

Method for email testing

I am writing a program that will be emailing reports out many (~100) clients which I want to test before I spam everyone. I want to do a test run against my production data and actually send the messages to a SMTP server, but I don't want the SMTP server to actually deliver the messages. I want the server to act like a real SMTP server...

Outlook autocleaning my line breaks and screwing up my email format

I'm sending an email using the dotnet framework. Here is the template that I'm using to create the message: Date of Hire: %HireDate% Annual Salary: %AnnualIncome% Reason for Request: %ReasonForRequest% Name of Voluntary Employee: %FirstName% %LastName% Total Coverage Applied For: %EECoverageAmount% Guaranteed Coverage Portion: %GICove...

SMTP and IMAP server library for .net

Hi, does anyone know good SMTP/IMAP server libraries for C#? I only found some long abandoned projects. Only SERVER SIDE libraries, please no more posts about client libs. Thanks, Fionn ...

What's the best way to give the user weekly updates from your program?

I have a program that, for the most part, operates in the background. Let's say it DoesWork(). Once a week, I want it to notify the user on some of the work it has completed over the past few days. It will be a basic status report, listing some files that have been downloaded. Initially, I wanted to sent this status update via email,...

Best tools for testing bulk emailing in .net?

Scenario is that we send out thousands of emails through SMTP server. Content is created in advance and picked up when sent. The thing is we want to find where our bottlenecks are in production environment and where work needs to be done. Goal is to be able to send half a million emails in ten minutes*. Should we create dummy email...

python smtplib

Hey I have a windows server running python CGI scripts and I'm having a little trouble with smtplib. The server is running python 2.1 (unfortunately and I can not upgrade it). Anyway I have the following code: session = smtplib.SMTP("smtp-auth.ourhosting.com", 587) session.login(smtpuser, smtppass) and it's giving me this err...

Using Python's smtplib with Tor

I'm conducting experiments regarding e-mail spam. One of these experiments require sending mail thru Tor. Since I'm using Python and smtplib for my experiments, I'm looking for a way to use the Tor proxy (or other method) to perform that mail sending. Ideas how this can be done? ...

Someone knows a mail (SMTP) delivery library for Java?

I'd like to send mail without bothering with the SMTP-Server which is used for delivery. So JavaMail API doesn't work for me because I have to specify a SMTP server to connect to. I'd like the library to find out on its own which SMTP server is responsible for which email address by querying the MX record of the mail address domain. I...

Good SMTP server on Windows for a production server

I'm going to have my website hosted soon on a VPS or dedicated server (with Windows 2008), so I'm trying to plan ahead. I wonder whether the built-in SMTP server that comes with IIS7 is reliable enough for a production server or should I look for an alternative? I heard good things about hmailserver and best of all it's free, do you have...

POP-Before-SMTP

Recently I had to move one of my web applications to a new hosting provider. The mail and web service is still held on the old hosting site however, when I try to send an email from the new server,I get an error; "The server rejected one or more recipient addresses. The server response was: 450 : Recipient address rejected: Greylisted ...

How can I make SMTP authenticated in C#

I create new ASP.NET web application that use SMTP to send message. The problem is the smtp was not authenticated from who send the message. My Question is: How can I make SMTP authenticated in my program? does C# have a class that have attribute for enter username and password? ...

Sending Mail via SMTP in C# using BCC without TO

I am trying to use the System.Net.Mail.MailMessage class in C# to create an email that is sent to a list of email addresses all via BCC. I do not want to include a TO address, but it seems that I must because I get an exception if I use an empty string for the "TO" address in the MailMessage constructor. The error states that "TO" must n...

System.Net.Mail - Invalid Characters in Mail Address

How can I send an email using SYstem.Net.Mail to an email address that is unusual (myFirstName.O'[email protected]) but is still RFC 5322 compliant? Does .NET support sending mail addresses that have single quotes in them, and if so, how do I force the system to allow email to be sent to those addresses? Right now we're using the Sys...

How do I email Active Directory distribution groups from a c# web application?

I'm trying to send email to Active Directory distribution groups. I know you can send mail using something like: mail.From = new MailAddress("[email protected]"); mail.To.Add("[email protected]"); //set the content mail.Subject = "This is an email"; mail.Body = "this is a sample body with html in it."; mail.IsBodyHtml = tr...

What are the high level requirements for building a basic SMTP server for Windows?

I know Windows has SMTP capabilities under IIS, but I thought a basic SMTP would be a good project for learning Windows application development. I don't want a relay. I want an actual SMTP server that will send email from localhost anonymously. Obviously, it is only to be used for routing emails sent during a development process, and I r...

IIS SMTP: Exceeded storage allocation response

Hey all. We're sending quite a few emails (around 23k) using IIS6 SMTP service and receive about 7-8 error messages each time. The stack trace is: System.Net.Mail.SmtpException: Exceeded storage allocation. The server response was: 4.3.1 Session size exceeds fixed maximum session size at System.Net.Mail.DataStopCommand.CheckRespons...

corrupted email attachments in .NET

I'm trying to attach a PDF attachment to an email being sent with System.Net.Mail. The attachment-adding part looks like this: using (MemoryStream pdfStream = new MemoryStream()) { pdfStream.Write(pdfData, 0, pdfData.Length); Attachment a = new Attachment(pdfStream, string.Format("Receipt_{0}_{1}.pdf", jobId, DateTime...