Tagged Questions
General purpose email routing facility that supports mail transport via TCP/IP using SMTP
17
votes
4answers
4k views
Creating email templates with Django
I want to send HTML-emails, using Django templates like this:
<html>
<body>
hello <strong>{{username}}</strong>
your account activated.
<img src="mysite.com/logo.gif" />
...
10
votes
5answers
9k views
Sending mail via sendmail from python
If I want to send mail not via SMTP, but rather via sendmail, is there a library for python that encapsulates this process?
Better yet, is there a good library that abstracts the whole 'sendmail ...
9
votes
12answers
3k views
Does your email client let you add custom headers programmatically?
I'm working on an anti-spam project (centmail) that involves having the sender use a client plugin that adds a custom header (as well as a signature, but that part's easier). The general problem is ...
8
votes
6answers
3k views
7
votes
3answers
151 views
What's the best way send email from the database in SQL Server 2008 R2?
Migrating a legacy database from SQL Server 2000, and there are a few scheduled tasks that use SP_OACreate & CDOSYS to send emails to an open SMTP relay as in this KB article: ...
7
votes
4answers
621 views
xp_smtp_sendmail blank space added to html randomly
I have a proc where I generate small html doc with a link and send it out via xp_smtp_sendmail proc. Link is generated based on query results and is long. This works in most cases. However, sometimes ...
6
votes
4answers
259 views
ar_sendmail command not working with ruby 1.9.2
I am not able to run ar_sendmail command from my terminal. I don't think i have missed its configuration. Below is my code;
development.rb
++++++++++++++++++++++++++++++++++++++++++++++++++++
...
6
votes
3answers
345 views
Most reliable way to deliver emails from a users email address in rails?
I would like to allow users to send emails which are generated in my rails app from their email address .
I know I can just use my servers sendmail, and set the from address to their email address, ...
5
votes
3answers
250 views
PHP, sendmail and transports - how to speed up mail sending
I just wrote a set of bulk-emailing classes for handling enormous amounts of emails and parsing their content according to passed params. If I test an email on 1000 random recipients and 1000 random ...
5
votes
2answers
700 views
Send Email From Amazon SES in ASP.NET MVC App
I host my web app which is written in .net mvc2 on amazon ec2. currrently use gmail smtp to send email. beacuse of google for startup email quota cant send more than 500 email a day. So decide to move ...
5
votes
3answers
2k views
C# Sending emails on separate threads using QueueUserWorkItem
I have a console application that sends customized emails (with attachments) to different recipients and I want to send them concurrently. I need to create separate SmtpClients to achieve this so I am ...
4
votes
2answers
233 views
Mass mail sending from linux [closed]
i've been running a website for the last years which have grow up significally. Right now in my database i have about 40k emails and i'm planning to send emails to those people which get subcrived to ...
4
votes
1answer
234 views
Pyramid sending mail: pyramid_mailer or marrow.mail
[Sorry, I'm a SO newbie, so I can't link to the relevant items; I can only have 2 URLs.]
I'm interested in adding outgoing email support to a Pyramid-based web-app. I'm aware of pyramid_mailer and ...
4
votes
1answer
113 views
Mail Composer Issue
Is there a way to get the "from" address of Mail and display it in MFMailComposeViewController?
Is it possible?
Any way to do that..
Please help....
4
votes
2answers
1k views
sending mail through C#
I know how to send mail using C# through my ISP SMTP, yet my SMTP started blacklisting my emails and flagging them as spam emails. So I have a paid server, which I can set email accounts on. I want to ...
4
votes
3answers
776 views
Django send_mail results in error 61 refused on Mac OSX
Running into a very stange error. I'm running Django on my Mac OSX and when I tried to send an email from my application it hangs and gives me this error: "Error 61 Connection Refused"
Any ideas? I ...
4
votes
6answers
2k views
Troubleshooting PHP Mail
How can I check a problem with mail being sent on my server?
I run a simple test:
if(mail($to, $subject, $message)) {
echo 'Mail Sent';
}
which the test outputs the text.
But no mail ever arrives.
...
4
votes
3answers
3k views
How to send an email using Zend_Mail, sendmail, and localhost?
I'm developing a zend framework application that includes a simple email function. The development version is running on my computer, which is running Ubuntu. The production version is going to run on ...
4
votes
2answers
1k views
ssh tunnel for sendmail
I'm going nuts here, trying to get my system configured.
I have a laptop at home and a workstation at work. I use mutt and sendmail. I have a home isp that is on a lot of blacklists, so that any ...
3
votes
4answers
79 views
PHP mail() function replacement?
When I change providers I always have to make sendmail work and it's a real drag.
Are there any free providers I can use within my PHP code to send the same variables like keycodes for registration ...
3
votes
2answers
96 views
How to avoid my mails sent from PHP mail() being marked as spam?
I'm using the following to send registration e-mails:
$subject = 'subject is here';
$message_raw = 'e-mail text';
$message = base64_encode($message_raw);
$headers = 'MIME-Version: 1.0' . "\r\n";
...
3
votes
3answers
126 views
PHP mail() email address is different from the email being sent [closed]
Possible Duplicate:
Emails showing from host.myserver.com instead of mydomain.com
Not sure if this will make sense, but when I try to send an email from russell.harrower@mydomain.com it ...
3
votes
0answers
79 views
Mail function disabled? [closed]
My provider said that they do not support the mail() function. They say that I should use Authenticated SMTP. But now I have to install plugins like Swiftmailer. That's not the biggest problem, I have ...
3
votes
2answers
159 views
Sendmail delay 80 secs everytime--what's causing it?
I'm on an ubuntu virtual server. Sendmail works through php's mail() function but it takes 80 seconds to complete every time.
I've checked the mail.log and these are the entries:
Aug 5 14:52:36 ...
3
votes
2answers
692 views
PHP sendmail works in Ubuntu command line, but not from a php file
I installed sendmail with PHP and apache on Ubuntu. When I try the following command-line
php -r "mail('test@gmail.com', 'test', 'test')"'
it successfully sends the email.
However, running the ...
3
votes
1answer
256 views
Perl: sending zip as base64-encoded attachment corrupts archive
I'm using perl to assemble a multipart-MIME email, which I'm then sending using sendmail, on a Windows environment. Not ideal, I know.
Part of this is collecting files, zipping them up, then ...
3
votes
3answers
77 views
Is it possible to only allow PHP mail to send to certain email address's at a php.ini level
Whenever I'm doing development on a site which sends emails to users I have to remember to comment out the mail() code so that I don't accidentally trigger the notification email whilst fiddling ...
3
votes
2answers
202 views
How can i limit the number of mails sent using SmtpClient (System.Net.Mail) per minute in asp.net?
I've a requirement to send more than 20000 alert mails at one click and wanted to limit the number of mails sent per minute.
Is there any inbuilt/alternate way that can be used along with SmtpClient ...
3
votes
3answers
2k views
how to send multiple attachments using sendmail
I want to send html file as message body and want to attach multiple text files to this email message
Since html file needs to be send , sendmail has to be used ( I could not do it using mailx)
so ...
3
votes
1answer
2k views
jQuery/PHP mail send the easy way?
Ok, to make long story short:
JavaScript:
jQuery("submit").click(function() {
var address = jQuery("#mail").val();
var title = jQuery("#title").val();
var name = ...
3
votes
2answers
3k views
XAMPP Sendmail using Gmail account
I'm trying to configure Sendmail through XAMPP to send email. In my sendmail.ini I have these settings:
# Set default values for all following accounts.
logfile "C:\xampp\sendmail\sendmail.log
...
3
votes
1answer
279 views
Rails 3, mail and OpenSSL problems
I keep getting this error in my production enviroment
OpenSSL::SSL::SSLError (hostname was not match with the server certificate)
I really don't know much about certificates. I have configured rails ...
3
votes
2answers
103 views
Issues with including Email app inside my app -
when a button is pressed, the MFMailComposeViewController is presented.
That far i have done.
My question is
Is it possible to disable the action sheet popping up when cancel button is pressed?
Is ...
3
votes
2answers
178 views
Send Emails From AppEngine Locally
The subject of the post says it all: I want to be able to send emails from AppEngine when it is running locally. As far as I understood from this post:
to send emails from Google appengine
I have to ...
3
votes
3answers
320 views
My server and php mail() function sends email to the spam folder
is there any way i install SMTP service on my Linux server and use php to send emails through it ?
so that emails doesn't show up as spam ?
maybe through ssl ?
my mail() function is perfect , with ...
3
votes
3answers
251 views
Sending mail in php
Here i am new to PHP, i want to send the mail and my application is running on go daddy sahre hosting so please tell me hows can i achieve it .
thanks to all.
i got the response from you guys and i ...
3
votes
2answers
645 views
Send an e-mail with rtf text in delphi
I would like to perform the following task: converting a TRichEdit content (an rtf text) into a not-plain-text e-mail message body.
MAPI doesn't support rtf, but is there a way to do it maybe with ...
3
votes
2answers
693 views
Send email from rails console
I'm trying to send out some mails from the console on my production server, and they're not going out. I can't work out why. I have just your standard email setup with sendmail. When i call the ...
3
votes
3answers
387 views
how to send email from web app with mail() in php on CentOS (sendmail, postfix, …?)
We are building a web app and will need to send emails on a frequent basis using php's mail() function. We are using it to send mails when e.g. a user signs up for the app, when a client has a new ...
3
votes
3answers
930 views
Ruby mailer is coming up with an EOFError
I am getting an EOFError (End Of File Error) on this code in my controller. The block where the error appears is at the end of the line that says UserMailer.deliver_message( I am unaware as to how to ...
3
votes
3answers
233 views
Email form isn't sending
I have an email form that isn't sending out an email to the recipient or a copy to the client. The form can be found at www.kelcos.co.uk/contact and the files associated with this are:
/index.php
...
3
votes
6answers
271 views
How to execute a function until it succeeds?
I am writing a function to send a mail to specific user?
What I am trying to do is, if error occurs I want to keep on sending the mail until the mail is sent.
function sendmail() {
...
3
votes
2answers
42 views
“Send Email” functionality for public web-site
Public web-site provides list of employees to Internet visitors. Contact information is hidden but visitor can send email via popup email-form.
What do you think about automated-scripts/viruses/bot ...
3
votes
2answers
722 views
Google App Engine: Sendmail, command not found
I'm trying to get sendmail working on localhost. The problem is that the app engine has det wrong path to sendmail, since it throws the error: /bin/sh: sendmail: command not found
Using Mac OS X, the ...
3
votes
4answers
15k views
sending email with gmail smtp with codeigniter email library
<?php
class Email extends Controller {
function Email()
{
parent::Controller();
$this->load->library('email');
}
function index()
{
...
3
votes
4answers
3k views
3
votes
3answers
272 views
Why does this PHP error reference localhost?
I'm running XAMPP on my local machine and on a server in the office. Both are Windows machines.
I'm writing some code that uses mail() to send email from a form. By default, it uses sendmail.exe ...
3
votes
1answer
918 views
PHP, postfix, sendmail, thunderbird for local dev only
Hey, I'm trying to get php's mail function working on my local dev box in such a way where all mail sent using mail(), regardless of recipient, would stay local and show up in a thunderbird account ...
3
votes
2answers
2k views
How to get extra error information from PHP's mail() failure?
When mail() fails, there not much info about what went wrong. I understand that the best course of action is to check your sendmail logs, or whatever mailer has PHP used. But from a programming and ...
3
votes
1answer
1k views
Correct format of an Return-Path header
My application uses sendmail to send outbound email. I set the 'From:' address using the following format:
Fred Dibnah <fred@dibnah.com>
I'm also setting the Reply-To and Return-Path headers ...