General purpose email routing facility that supports mail transport via TCP/IP using SMTP

learn more… | top users | synonyms

0
votes
1answer
13 views

Attaching file with SSIS by matching filename with value in SQL table

I have a SQL table which structures as Serial EMAIL 543 ali@hotmail.com 789 paul@gmail.com 485 paul@gmail.com 654 sam@yahoo.com and then I have pdf attachments in a folder where ...
1
vote
1answer
27 views

Python sendmail with text file content

I want to send mail via python script, I need it to alert me about some missed files. scripy have to read log file(*.txt) and send content of this file into my mail, so I made it: import smtplib, os ...
0
votes
1answer
22 views

when does smtp server sends response for mail sent- after placing in the queue or after delivering?

Hi in an enterprise environment we need to send smtp emails to lots of clients at the same time. the email send request originates from front end and comes all the way back to ESB to send email. Now ...
0
votes
0answers
12 views

Amazon ec2 SES with sendmail path configuration

I have setup my ec2 instance with SES documented at http://docs.aws.amazon.com/ses/latest/DeveloperGuide/scripts-mtas-sendmail.html everything is working accordingly except that the last point sudo ...
0
votes
0answers
40 views

PHP Email Sender: Full name telling “unknown sender”

if(empty($_POST)=== false){ //send email $fullname = $_REQUEST['fullname']; $names = $_REQUEST["fullname"]; $phonenumber = $_REQUEST['phonenumber']; $mobilenumber = ...
0
votes
2answers
33 views

Perl sendmail to list is truncated

I am working with a perl based cgi pages for a webproject. I am encountering a strange problem with sendmail module which happens randomly. Problem: Sendmail would truncate the emails of the users ...
-2
votes
1answer
34 views

Test PHP mail setup [closed]

For a client I'm developing a mail form using php. I know they got php installed by uploading a phpinfo file. Still, when using a small test mail php file, no mails get send. Probably their smtp ...
0
votes
1answer
29 views

How to send mail from linux command line with HTML content body and an attachment [closed]

I need to send mail from a linux host with HTML content type and also attach a file to the mail. cat html_mail.txt To: me@mydomain.com Subject: Test Mail Content-Type: text/html; ...
0
votes
0answers
14 views

Remove first row from a CSV file extracted from a mail attachment

I have extracted the CSV file contents from an email attachment which I need to append to the existing CSV file using file_put_contents('file.csv',$message,FILE_APPEND); This works, but before ...
0
votes
0answers
16 views

Zend_Mail_Transport_Smtp for Zoho mail

I have been trying to use Zoho mail to send emails. I have found a lot of examples on how to do this with Gmail, but not Zoho. Gmail works fine with this same code (different port and server, or ...
0
votes
1answer
32 views

Send Mail fails? [php + xampp]

In sendmail error log I get this error: 13.05.17 22:33:23 : Must issue a STARTTLS command first. x41sm21034997eey.17 - gsmtp<EOL> 13.05.17 23:02:55 : Must issue a STARTTLS command first. ...
-1
votes
1answer
40 views

php mail() takes very long time to execute [closed]

I have a problem with the mail() function on my server. It contains basic sample code from php.net for sending an email. When I execute the script via browser it takes more than 50-60 seconds to ...
1
vote
1answer
22 views

django alternative EMAIL_HOST settings

I want to implement django managment command which send emails by smtp with not default settings from settings.py file such as: EMAIL_HOST EMAIL_HOST_USER EMAIL_HOST_PASSWORD FROM_MAIL ...
0
votes
1answer
18 views

How to send data to selected mailId without using MFMailcomposer in ios

I want to send a array data through mail.I know Its possible through MFMailcomposerViewController.But As per my requirement without using MFMailcomposerViewController how it is Possible? Please ...
1
vote
0answers
29 views

PHP mailer error : failed to open stream: No such file or directory

Hello there I receive following error while try to upload file using php mailer. move_uploaded_file(C:/inetpub/vhosts/yoursite.com/httpdocs/userfiles/resumes/5007story1.pdf) ...
0
votes
1answer
27 views

PHP Sendmail queue priority

How can I set message priority in Sendmail queue? I want all messages from PHP to be served first while I'm sending large news-list to subscribers "in background". Without priority definition urgent ...
0
votes
1answer
72 views

Solution to Send Bulk Emails in a Short Span Using PHP Application [closed]

I've a authenticated database of one million e-mail IDs. I need to send a single email to all these email IDs. I've a PHP web application using simple PHP mail() function. But i found it is not ...
0
votes
0answers
12 views

how to store a list of items in Gel Script

I would like to create a process in Clarity 13.1 which sends an email to all managers belonging to different OBS units in IT Department containing the list of resources who did not complete their ...
1
vote
1answer
34 views

Send email programmatily from recent Android

I've read the question linked here. I've tried this method to send email programmatily when, for example, user press a button. It does works on 2.3.7 version of Android. The issue is when trying to ...
1
vote
1answer
19 views

Send email with c program in Mac OS X using MTA.

The problem: Failed to invoke sendmail: Invalid argument The code #include<stdio.h> #include<errno.h> #include<string.h> int add(char* to,char* from,char* subject,char* message) { ...
0
votes
0answers
16 views

Sendmail not working with PHP

I'm running Ubuntu on my server and I've been trying to get Sendmail working the past 3 days. There's something really messed up with my server's mail configuration. I used to have a postfix/webmail ...
-4
votes
0answers
30 views

how to send Email via mvc program [closed]

i wanna to send E-mail to my Gmail count for example throuph a mvc programme, is it possible? if the answer is yes, is there any one who can send me the code source? i looked for so many source code ...
0
votes
0answers
26 views

sendmail installation trouble on ubuntu server 12.10

I try to install sendmail on ubuntu 12.10: In terminal: sudo apt-get install sendmail Reading package lists... Done Building dependency tree Reading state information... Done Some packages ...
0
votes
0answers
43 views

not even with mail or phpmailer can send mails

Hy !! i have a big problem, i have an Ubuntu 10.10 with php 5.3.2, I use phpmailer to send mails and the function works like a month ago. But know, it just said, SendEmail with the php mail, or with ...
0
votes
0answers
18 views

CGI Script Send Mail error

Hopefully someone can help a user that has zero experience with CGI coding. Prior to yesterday, the following code was working fine when our clients would submit their orders. Then yesterday an ...
0
votes
1answer
20 views

Using sendmail from command line

I'm trying to write a bash script, to be run by a cron task, which will send me an email under certain circumstances. In order to try and get sendmail working with my Sendgrid SMTP settings, I've ...
-1
votes
0answers
18 views

Creating multiple smtp accounts on the fly

I am working on a college project where I am expected to code a program to create smtp accounts on the fly(php). I have read and explored about Mail Trasport Agents such as sendmail, postfix and ...
0
votes
2answers
23 views

Run background after submitting a Form in Struts 1.x

Iam looking out for a solution to below problem: In Strust1.x, after submitting a form , i need to send mail to group which contains around 200 people, in this my page should be redirect to ...
1
vote
3answers
82 views

Best way for sending advance email

I'd like to send email by asp.net . I use this code and it is work fine. mail.From = new MailAddress("mail@gmail.com", "sender", System.Text.Encoding.UTF8); string to = Session["Umail"].ToString(); ...
0
votes
2answers
44 views

Validate Mail Status Bash Script

I' doing something like this: echo "TEST MAIL" | mail -s "subject" "SOME@MAIL.COM" it's send ok! but i must validate in the shell script if the mail was sent or not. I don't find some way to ...
0
votes
1answer
70 views

how to handle system.net.mail.smtpfailedrecipientsexception failed recipients

I wanna send email to multiple addresses (more than 1000 users) and use the following code, when I use it to send email to less than 100 users it works, but for more than 100 users it does not work ...
1
vote
1answer
26 views

How to find out which script is generating email in postfix [closed]

I want to find out what script is generating below emails in Postfix. How can I find this out? Apr 9 15:44:40 web-02 sendmail[6483]: r395ieiC006483: from=communications@domain.com.au, size=50, ...
0
votes
1answer
42 views

Calling Email OnError from ScriptTask of SSIS

I have a simple SSIS package with a single script task on it. I have an OnError event with a Send Mail task. All i'm doing is testing to see if i can send an email when i detect an error withing ...
0
votes
1answer
23 views

Splitting Form Results Evenly between 2 recipients

I need to split the form results from a contact form evenly between two recipients. E.g. First contact form goes to Recipient 1, next one goes to Recipient 2, next one goes to Recipient 1 etc. Just ...
0
votes
1answer
37 views

I changed the SMTP and SMTP Port but it still says Failed to connect to mailserver at “localhost” port 25

I am currently using xampp 1.7.0 and my php version is 5.2.8 I changed my php.ini file to: [mail function] ; For Win32 only. SMTP = smtp.gmail.com smtp_port = 465 and my send_email.php file looks ...
0
votes
2answers
38 views

php mail() script not working

Hey guys I cannot for the life of me figure out where I went wrong here. When the form submits it takes it to a blank page. No errors or confirmed. Just Blank. Im assuming it is a syntax error but I ...
1
vote
1answer
19 views

ScrewTurn Wiki send an email to all users when a new page is added or an existing modified

I'm searching how to configure screwturnwiki to send an email message to all users when a new page is added or an existing page is modified. Could someone help me to find a solution? Thank you for ...
1
vote
1answer
26 views

How to automate archiving a copy of mails received/sent through sendmail MTA on CentOS?

We have an application which sends out emails and also receives emails from the users which trigger functionality in the application. There are a lot of emails going back and forth. We would like to ...
0
votes
0answers
24 views

Using sendmail in php

I am trying to send an email containing a link for the recipient to confirm an action and then view the results. The problem is that when I put a fully-qualified URL (the .com seems to kill it) in ...
-5
votes
1answer
72 views

Sending HTML e-mails from PHP [closed]

MYSqL works fine but I do not get emails why? <?php //include the connection file require_once('connection.php'); //save the data on the DB and send the email ...
0
votes
1answer
54 views

send email using php with AWS EC2 [solved]

I use AWS EC2 server (ubuntu instance) and I want to send email through php code I installed sendmail and modify .mc file as blow FEATURE(`no_default_msa')dnl dnl DAEMON_OPTIONS(`Family=inet6, ...
-1
votes
1answer
68 views

Host name lookup failure in send mail [closed]

I am sending mail via Sendmail. But it gives error in maillog "Name server: mail.example.com: host name lookup failure." What might be the problem?
1
vote
1answer
36 views

Send a mail with Zend Framework : “Connection could not be established”

I'm working on an "old" php/zend project right now. I installed it locally, everything is fine except the part where the app sends a confirmation mail after the user has completed a form. the error i ...
1
vote
1answer
56 views

sending emails in python weird behaviour

I am working on a piece of code that regularly sends emails from 4 different accounts, 2 of them are gmail accounts and the other 2 are yahoo accounts. When I started writing the code I was able to ...
0
votes
0answers
147 views

MVC 4.5: Send an email with .pdf attachment using SmtpClient - what am I missing here?

This shouldn't be that complicated. I simply want to sent an email with a .pdf attachment. The email sends and is received with the attachment, but it is < 1k in length all the time. When I try ...
0
votes
1answer
56 views

Salesforce Email sending with attachment adds extra extension .html

I am sending email with 3 attachment it's work fine but when attachment files size are large then it adds extra extension with file name i.e test.pdf comes along with (test.pdf.html) in my email and ...
1
vote
0answers
60 views

Best way to send bulk emails BCC vs Individual?

My development team has gotten into a fight with systems about how bulk emails should be sent out via a sendmail server. Currently when development sends out a 1000 recipient email, we put them in ...
0
votes
1answer
53 views

Can't process multiple select with PHP in email form

Can't get my form to send data from a multiple select option (named 'country' in my coding below). I've checked out a few answers on here already, but I'm really no PHP genius to be able to figure out ...
1
vote
0answers
53 views

Simple, how do I use variables in Google Docs Script, mailapp.sendmail(message), Javascript

I want to use variables in the example from Google but the standard substitution is not working. What is the trick? https://developers.google.com/apps-script/reference/mail/mail-app#sendEmail(Object) ...
-1
votes
0answers
23 views

How to configure Inbound mail in Phabricator using Lamson?

How to configure Inbound mail in Phabricator using Lamson? http://www.phabricator.com http://www.phabricator.com/docs/phabricator/article/Configuring_Inbound_Email.html Tried it but nosetests keep ...

1 2 3 4 5 24