smtp

Authenticating incoming email sender

I want to develop a system with which users interact by sending in email. Very much like most email discussion groups or like posterous. What checks should I apply to incoming email to make sure it comes from the address it claims to be? ...

smtp port php configuration file

Hi guys, I have a php script set up to generate emails. Currently, they give the success message but don't actually send the email. I just had a look in the php configuration settings file, and I noticed this: [mail function] ; For Win32 only. SMTP = localhost smtp_port = 25 Is this where I change the SMTP to the address I need th...

Send email from a comment box

I designed a small website last year in visual web developer. I added a small facility using smtp class, basically it allows people to write comments in a text box and once clicked "send" it sends me an email of whatever they typed. I am now using cPanel, and there is no .net support from what I can see (I am not using a dedicated serve...

Is there a publicly available piece of Coldfusion code that will reliably convert e-mail "source code" into plain text?

I'm modifying the Coldfusion-based interface for a listserv admin application to show snippits of recently-posted messages on a page. The messages are all stored in a SQL Server 2005 database on the listserv's mail server, and in theory it should be easy enough to query the recent ones and display them. However, the "message" column of t...

Looking for solid SMTP component for Delphi 2006,

Indy is not enough for me, it must support SSL and be rock solid, can be commercial also ...

Writing a simple email server

What would be a good starting point for me to learn about creating an email server? Basically, what I want to do is have a server (such as foo.com) recieving mail for me so if I send an email to ([email protected]) it will dump the contents of the email into /mail/blah/subject and then send it off to my REAL email account. I'm looking to do...

How can I make a service that send mails every 5 minutes?

Hy, I have a c# program that sends emails with GMail SMTP server and I want to make a service or something running behind that sends this emails every 5 minutes. Does anyone have any idea how can I make this with c# and asp.net? ...

IIS SMTP configuration settings

I am using windows XP S2. I am sending email by using IIS SMTP. Now the problem I am facing is with SMTP server. All the mails I am sending are storing in SMTP Queue folder but its not sending them to the respective domains. I think that there is some SMTP setting problems, I need to configure SMTP. One more thing that I dont have any re...

Javascript IMAP and SMTP client?

Is it possible to build a SMTP/IMAP client that can run in the browser that uses only Javascript? ...

How do I send multi-line output from Perl to /bin/mail?

I have a Perl script that prints multiple lines of output to screen. I need to capture those lines and either pipe them into a single piece of email ( /bin/mail ) or into a text file that I can send by /bin mail in another operation. Actually, I have already figured out the easy (dumb) way whereby I use a bash wrapper to do the mailing b...

gmail smtp problem

I am using gmail smtp to send emails from my website, but i noticed that some emails are dropped. I use Zend_Mail. Everything works as it supposed to for most of the emails, but if an email's subject/body is somewhat questionable, then it might not be sent. For example: If I try to send emails like this: Subject (asdjkasdf kasdjf kdfas...

How long does it take for GMail to unban an IP blocked for spam?

My site's SMTP had been exploited by spammers. Since then, all mail to GMail addresses is being bounced with the following message: 550-5.7.1 Our system has detected an unusual rate of 550-5.7.1 unsolicited mail originating from your IP address. To protect our 550-5.7.1 users from spam, mail sent from your IP address has been blocked....

Using Javascript to connect with server using protocol other than HTTP

Can Javascript be used to connect with a server with a protocol other than HTTP or FILE? Ideally, I would like to connect to an SMTP server using Javascript. ...

How to build an smtp server?

I'm interested in writing a SMTP mail server that just sends emails? I would be writing this in C# as a stand alone application. So if anyone can point me in the right direction or explain how an SMTP actualy sends out emails that would be great. ...

Is there any way to control sent mail in ASP.NET?

I have two questions. First one is simple: Is there any way to control priority of mails while sending those in ASP.NET? For example i have a dating website and there are few types of mails send. One is registration mail and other are less important like new message in inbox for those who want this information. There are many users on w...

SMTP server to be used for Email Marketing Service

Hi all, I am trying to build a email marketing service company. I am a .net programmer and I have played around trying to build a custom SMTP server but a lot of problems came up when domain keys into play. I am on the next step where I am looking for a professional that I could implement with .Net to send emails. It should provide full...

How do I send an email to multiple recipients using asp.net?

I have a sendmail funciton that works for one recipient. If I pass something like "[email protected];[email protected]" in ToEmail then I get an error that says ; not allowed in message header. What am I doing wrong? Here is my SendMail function: Public Function SendMail(ByVal ToEmail As String, ByVal FromEmail As String, ByVal Subject As...

SMTP Email from ASP.NET

I have an asp.net 4.0 web site that generates email alerts based on several different events throughout the site. I use the following code in a Utility.cs class that lives in my App_Code folder. Subject, body, and mailto are parameters being passed into the method. try { var mailmessage = new MailMessage(); mailmessage.From("a...

PHP - Specifying the SMTP server to send mail through

I am developing a simple webmail client for IMAP-based email services using PHP's IMAP library, and I was wondering if there was any way to specify the SMTP server to use when sending an outgoing message, so that the message will be placed in the user's Sent mailbox when they are logged into their IMAP account. I saw that their is an ima...

Bulk Email Validator

Hello all, I wish to either make use of a freely available email validator (software, script or online service). If this does not exist, are there some free PHP classes that I can make use of to validate email addresses? I have about 100 emails and before I send to these emails I would like to check their validity. I don't want my ser...