Tagged Questions
Simple Mail Transfer Protocol (SMTP) is an Internet standard for electronic mail (e-mail) transmission across Internet Protocol (IP) networks.
61
votes
9answers
105k views
Send email using GMail SMTP server from PHP page
I am trying to send an email via GMail's SMTP server from a PHP page but I get this error:
authentication failure [SMTP: SMTP server does no support authentication (code: 250, response: ...
42
votes
9answers
9k views
Dummy SMTP Server for testing apps that send email
I have a lot of apps that send email. Sometimes it's one or two messages at a time. Sometimes it's thousands of messages.
In development, I usually test by substituting my own address for any ...
37
votes
8answers
35k views
Need a lightweight, free, windows SMTP server
Anyone have any experience with 3rd party SMTP server for windows (server 2003)? I would like to set one up so that the cruise control can send reports of nightly builds and svn check-ins.
I would ...
31
votes
14answers
42k views
How to check if an email address exists without sending an email?
I have come across this PHP code to check email address using SMTP without sending an email.
Has anyone tried anything similar or does it work for you? Can you tell if an email customer / user enters ...
29
votes
5answers
6k views
sendgrid vs postmark [closed]
I am evaluating 3rd party services to handle our webapps email.
Requirements:
Tracking bounces
HTML email
Customer headers
Incoming email queue (Post email to some URL?)
Spam filtering of incoming ...
27
votes
3answers
16k views
Send Email via C# through Google Apps account
I have a standard Google Apps account. I have setup a custom domain through Google Apps. I am able to send and receive emails successfully through Google Apps when I use the Gmail interface. However, ...
22
votes
8answers
40k views
SMTP not working in windows 7
How can I get SMTP to work on Windows 7 (developer box). I used to just be able to turn it on for a windows XP box. Is SMTP not included on windows 7? If so, what can I use instead as a free relay ...
19
votes
7answers
10k views
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: ...
18
votes
11answers
23k views
15
votes
2answers
16k views
“The remote certificate is invalid according to the validation procedure.” - Please help
I'm getting this error "The remote certificate is invalid according to the validation procedure." whenever I try to send e-mail using gmail's SMTP server in my C# code.
Can someone point me to the ...
14
votes
15answers
4k views
Testing SMTP with .net
I need to configure a SMTP server for testing my website which sends emails (for registration confirmation etc).
I dont actually want the email to be sent, I just want to make sure that my code is ...
14
votes
11answers
1k views
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 ...
14
votes
6answers
63k views
Setting up SMTP under IIS 7 on Windows Server 2008
Website started life originally under IIS 6 and the site worked great there. Now after relocating to a new server running W2K8S, everything but mail delivery from the website now works great under IIS ...
13
votes
6answers
3k views
development smtp server for windows
I am looking for a free test smptp server which can save emails in to files for my development tests. Since my development environment is windows I prefer test email server to run on windows but I can ...
13
votes
2answers
6k views
What is the behavior difference between return-path, reply-to and from?
On our mailing application we are sending emails with the following header:
FROM: marketing@customer.com
TO: subscriber1@domain1.com
Return-PATH: bouncemgmt@ourcompany.com
The problem that we are ...
12
votes
7answers
3k views
.NET Best Method to Send Email (System.Net.Mail has issues)
This seems to be pretty straight forward. I need to send email from some ASP.NET applications. I need to do this consistently without strange errors and without CPU utilization going through the roof. ...
12
votes
6answers
11k views
Sending mail from Python using SMTP
I'm using the following method to send mail from Python using SMTP. Is it the right method to use or are there gotchas I'm missing ?
from smtplib import SMTP
import datetime
debuglevel = 0
smtp = ...
11
votes
7answers
810 views
System.Net.Mail Alternative
I'm working on a tool that schedules emails with our mail server in C#. I had been using the System.Net.Mail classes to send the mail.
Recently I've come across various issues with regards to RFC ...
11
votes
3answers
17k views
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 ...
10
votes
3answers
2k views
trying to send mail using swift mailer, gmail smtp, php
Here is my code:
<?php
require_once 'Swift/lib/swift_required.php';
$transport = Swift_SmtpTransport::newInstance('smtp.gmail.com', 465)
->setUsername('me@ff.com')
...
10
votes
4answers
23k views
php.ini & SMTP= - how do you pass username & password
My ISP account requires that I send a username & password for outbound SMTP mail.
How do I get PHP to use this when executing php.mail()? The php.ini file only contains entries for the server ...
9
votes
4answers
3k views
Setting up DomainKeys/DKIM in a PHP-based SMTP client
It looks like there are some great libraries out there to do DomainKeys signing of emails on C#/.NET, but I'm having a really hard time finding the same kind of support for PHP. Maybe I'm not looking ...
9
votes
5answers
1k views
How to receive Email in Java EE application
Obviously it's not so difficult to send out emails from a Java EE application via JavaMail. What I am interested in is the best pattern to receive emails (notification bounces, mostly)? I am not ...
9
votes
4answers
2k views
Rails ActionMailer with multiple SMTP servers
I have a need to use two different smtp servers in a Rails application. It appears that the way ActionMailer is constructed, it is not possible to have different smtp_settings for
a subclass. I could ...
9
votes
2answers
2k views
Storing Smtp from email friendly display name in Web.Config
I'm storing my mailsettings in the web config like so...
<mailSettings>
<smtp from="splidge@findremovalcompanies.com">
<network host="smtp.findremovalcompanies.com" ...
9
votes
8answers
4k views
What's the best approach to sending email to hundreds of recipients from a Zend Framework application?
I'm trying to implement a mailing list system for my application. I'm currently using Zend_Mail_Transport_Smtp('localhost') as my transport, looping through my list of subscribers, and sending a new ...
9
votes
4answers
3k views
How can I save an email instead of sending when using SmtpClient?
I am using SmtpClient to send an email with an attachment.
However for a certain batch we need to somehow save the MailMessage instead of sending them.
We are then thinking/hoping to manually upload ...
9
votes
8answers
932 views
I ALMOST understand how email works, but I'm missing something
For the past few weeks, I've been trying to learn about just how email works. I understand the process of a client receiving mail from a server using POP pretty well. I also understand how a client ...
8
votes
3answers
5k views
Sending mail with devise and Gmail smtp server
I am using Devise :confirmable and :recoverable module to confirm a user and to let him recover his password if he forgets it. Everything is going fine, the mail gets generated and I can see it in the ...
8
votes
5answers
690 views
Verify that email domain exists
Does anyone check the domain of an email address as part of their verification steps? eg. Confirm that gmail.com exists if the user specified blah@gmail.com as their address.
I should note that in ...
8
votes
1answer
3k views
Best practices: Sending email on behalf of users
The company I work for provides testing services for the healthcare industry. As part of our services, we need to send email to our clients' employees. Typically, these are temp, part-time, or ...
8
votes
5answers
1k views
How to Domainkeys/DKIM email signing using the C# SMTP client?
I have written an program in C# which sends out emails. Now I have a requirement to sign outbound emails using Dominkeys/DKIM, but I'm not sure how to do it.
I have set up all keys, but I don't know ...
8
votes
2answers
16k views
Using Javamail to connect to Gmail smtp server ignores specified port and tries to use 25
I'm trying to use javamail in a groovy script to send out an email via gmail. I've looked many places online and have been unable to get it working thus far. The error I'm getting when running my ...
8
votes
4answers
749 views
Send Email on GMail SMTP under medium trust
I need to send an email from my app, which will be running under medium trust. My current email sending code that works fine under full trust throws SecurityException under medium trust
...
8
votes
4answers
6k views
How do I set up smtp on Vista so I can use System.Net.Mail?
From what I understand there is no SMTP server in IIS on Vista. I am working on a project which will require me to send email. I'd like to start with some simple prototypes on my development box ...
8
votes
7answers
2k views
How to send email from a program _without_ using a preexisting account?
I'd like my program to be able to email me error reports. How can I do this without hard-coding a username/password/SMTP server/etc. into the code? (Doing so would allow users to decompile the program ...
7
votes
1answer
79 views
Can't understand why Zend_Mail::addHeader() strips newlines
(Since this is my first SO question, let me just say I hope it's not too Zend-specific. As far as I can tell this shouldn't be a problem. Although I could have posted it in a Zend-specific forum, I ...
7
votes
4answers
631 views
Testing email sending - Django
any tips on testing email sending? Other than maybe creating a gmail account, especially for receiving those emails?
I would like to maybe store the emails locally, within a folder as they are sent.
...
7
votes
2answers
335 views
Temporary problems sending emails with ASP.NET
I hate to just post a stack trace here, but I am out of ideas... My app sends emails for various tasks on the website, and 90% of the time there are no problems. However, every so often ASP.NET throws ...
7
votes
7answers
2k views
Sending mass mail without going insane (SendGrid? cloud?)
I need to send regular newsletters, as well as smaller batches, to a 10k strong mailing list, programmatically.
We're currently exporting our list and then using Campaign Monitor's web interface to ...
7
votes
1answer
3k views
Sending BCC emails using a SMTP server?
I've had this noted down on some of my code for a while:
/**
* Add a BCC.
*
* Note that according to the conventions of the SMTP protocol all
* addresses, including BCC addresses, are included in ...
7
votes
6answers
4k views
(Ruby) Getting Net::SMTP working with Gmail…?
Does anyone have any quality (and up-to-date) information regarding sending mail via Gmail using Ruby's Net::SMTP? I've seen several examples -- most dating from 2007 to mid-2008 and none of them ...
7
votes
6answers
2k views
Are there any free services for sending SMS programmatically?
I have a Rails app that needs to send SMS messages to users but does not need to receive messages.
Is there a free way to do this programmatically? If so, how free is it - do they charge if you go ...
7
votes
5answers
8k views
smtplib and gmail - python script problems
Here's my script:
#!/usr/bin/python
import smtplib
msg = 'Hello world.'
server = smtplib.SMTP('smtp.gmail.com',587) #port 465 or 587
server.ehlo()
server.starttls()
server.ehlo()
...
7
votes
6answers
821 views
CSS on Email
Has anyone found a good way of embeding CSS in a programatically produced email. The best way I have found is to put the style code into a resource file and call it into the code.
An emample would ...
7
votes
4answers
1k views
SMTP header injection in ASP.NET?
My ASP.NET website has a global error handler that sends an email to me (and another developer) when there is any kind of error in the web app. We recently received an error which contained a CC to ...
7
votes
8answers
6k views
How do I send email to my Gmail account using SMTP and Perl?
I don't want to use sendmail to send an email but would prefer to use SMTP. How can I use Perl to send an email to my GMAIL account?
7
votes
8answers
3k views
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 ...
7
votes
4answers
4k views
How do I set up my Ubuntu VPS to send outgoing mail?
My VPS provider (Slicehost) doesn't provide an SMTP server. I use Google Apps to send and receive mail for my domains, but I want to be able to programmatically send e-mail.
I've been Googling this ...
7
votes
4answers
2k views
Simplest way to have a mail server for my domain
I have a domain name registered and I want to be able to send and receive mail for some mail addresses @ mydomain. I'm talking about a small number of addresses, and small mail volumes (but I would ...