Simple Mail Transfer Protocol (SMTP) is an Internet standard for electronic mail (e-mail) transmission across Internet Protocol (IP) networks.

learn more… | top users | synonyms

-1
votes
0answers
23 views

How to send data back to my computer from another computer

I'm installing a program on another computer that will record things and the recorder part is completely finished. Now I need to figure out how I can send things back to my main computer, but I've ...
0
votes
0answers
3 views

SMTP Connection Limit

Our SMTP provider has a 100 connection limit from a single IP address. Our application sends notifications of new posts using this method: private void SendMailAsync(string fromAddress, string ...
-1
votes
0answers
18 views

Using same domain for both email marketing and regular mailing? [closed]

Is there a way to use a domain for email marketing (using a seperate smtp server for mass mailing) but also for regular mailing with a web mail service like google apps? I mean can I send a mail from ...
-1
votes
0answers
13 views

Devise, Rails, ActionMailer configuration problems?

I have a rails app, which is using devise to send emails. The console says the mail is sent, for example. Sent mail to user@website.com (63ms) Date: Fri, 24 May 2013 18:57:13 -0700 From: ...
1
vote
1answer
38 views

200k Handles in TaskManager: Server out of memory / How to get list of used ressources

I have a Windows Server 2003 Small Business System here. The problem: there are about 200.000 handles which are consuming almost all the memory of the machine and I don't know how to determine which ...
0
votes
1answer
13 views

Smtp server which expect SSL connection on 465 or 587

There are SMTP servers that use port 465 for a secure connection, however , when a use a TcpClient to connect to these servers on this port, no greeting message is sent, have i to secure the ...
0
votes
0answers
14 views

PHP SMTP Not working with Amazon SES

I'm having a problem sending emails out through SMTP using Amazons SES. My code is relatively simple and looks like this: require_once "Mail.php"; require_once 'Mail/mime.php'; ...
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
18 views

Cpanel Java Email Client Program

If anyone tried/found working java email/smtp/imap client program that connects to cPanel's email a/cs and send emails out then please share it. It has been a tiresome efforts in trying to find that ...
0
votes
0answers
16 views

Gravity forms user registration - sending activation email

I am working with the plugin Gravity forms - user registration (1.5 Beta 1) I would like to use the 2 functions : Send mail User activation But they both don't work, no emails are sent. I am ...
0
votes
1answer
32 views

Use SMTP Server in Windows 2012 from C#

I need a SMTP server for Windows Server 2012 so that I will be able to intercept incoming emails from my C# application and display it to my clients via an ASP.NET application. Sorry if this would ...
0
votes
2answers
32 views

Email Sending in C# the remote host not responding

I am trying to create an email client via C# but I keep on having problems and I don't know how to proceed. I don't experience any problems when I am using gmail and yahoo as the smtp host. I am also ...
-1
votes
0answers
27 views

Unable to send mail via my own mail server (Postfix) [closed]

I've set up a Postfix mail server, and I can send and receive using a local mail client successfully. Now, I wanna send mail using PHPMailer via this mail server, but it failed: SMTP -> ERROR: ...
1
vote
1answer
20 views

twisted and smtp tls client

from OpenSSL.SSL import SSLv3_METHOD, TLSv1_METHOD from twisted.mail.smtp import ESMTPSenderFactory from twisted.python.usage import Options, UsageError from twisted.internet.ssl import ...
0
votes
0answers
29 views

error occuring while sending an email using smtp and outh token in android

While sending an email in android using JavaMail API and OAUTH2 token the below error is occurring. 334eyJzdGF0dXMiOiI0MDAiLCJzY2hlbWVzIjoiQmVhcmVyIiwic2NvcGUiOiJodHRwczovL21haWwuZ29vZ2xlLmNvbS8ifQ== ...
-4
votes
0answers
15 views

How reliable is SMTP? 1 email out of every 60 or so not getting through [closed]

How reliable is SMTP? I am using it in an application that sends batches of emails up to 30 at a time, and about 1 out of every other batch doesn't go through. I'm not sure whether it's not getting ...
0
votes
1answer
14 views

Javamail logging to service with FROM value

I'm using Javamail in my mailing service. This is my code: public static void send( final String username, final String password, String recipientEmail, String ccEmail, String title, String ...
0
votes
1answer
11 views

IIS 7 + Windows Server 2008 - Sending Emails from Classic ASP using CDO

On our existing platform we decided to upgrade our development server from Windows Server 2003 to 2008 some time ago. The problem we are facing is that all asp scripts that used to send emails before ...
0
votes
1answer
19 views

How to send bulk mails avoiding spam?

My problem is: We have got a lots of users and they got about 6-10k e-mails per day. Those e-mails for reset passwords, or registration confirmation, etc. But our IP is on a BAN list or what is that. ...
0
votes
0answers
22 views

Send email SMTP with PFX certificate

I'd like to use System.Net.Mail.SmtpClient class to send emails automatically with attachments. Additionally I need to sign the mails with a certificate. I got a PFX file which I can import in my x509 ...
0
votes
0answers
20 views

Sending mail from javax.mail in android app

I am working on sending mail from a broadcast receiver using javax.mail. The application sends mail when the app is running and in foreground. But when i move the application to background, I get an ...
2
votes
1answer
33 views
+100

How to get response from SES when using C# SMTP API

The .Net SmtpClient's Send method returns void. It only throws two exceptions, SmtpException and a FailureToSendToRecipientsException (or something like that). When using SES, for successful email ...
0
votes
1answer
32 views

How to login into smtp server

i want to login into smtp server without sending any mail. Code for explanation: Dim S As New SMTP() Dim IsOk As Boolean IsOk = S.Connect("smtp.example.com","994","username","password") IF IsOk ...
1
vote
2answers
37 views

How to convert EmailMessage alternate views into SendGrid Html and Text

I have an interface for sending mails public interface IMailSender { void SendMail(MailMessage message); } When I create a mail I use AlternateView for that (plain text and html) And now I ...
0
votes
0answers
14 views

File name generated by query used in attachment

I have this query that runs in SQL Server Agent and I need to be able to pick up the correct file. Currently I have it picking up a random file that is on the D drive but I need it to pick up the file ...
0
votes
1answer
6 views

Attach text file created by SQL Server Agent to email

Hello I am trying to figure out how to set up an SQL Server Agent Process that will pick up a file that was created by the step and send an email with the attachment. The first step is below. Would ...
1
vote
1answer
26 views

Amazon SES Smtp much slower than Raw mails

Why is Amazon Simple Emailing Service Smtp mails 10 times slower than raw mails ? The only difference is the raw mails are sent with the methods provided with the AWS SDK. The SMTP emails were sent ...
-1
votes
1answer
20 views

What's a good mail server API? [closed]

We currently use mail.google as our SMTP server for one of our web applications, but I wanted to know if there are any dedicated mail relay service providers that can handle large amounts of outgoing ...
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
0answers
16 views

parse smtp code output which through fsockopen()

I send EHLO command to gmail stmp. if response was success, it will send code 250. I try to catch the response code of gmail smtp. when my code like this $fp = fsockopen("ssl://smtp.gmail.com", 465, ...
0
votes
0answers
11 views

PHP SMTP library with AUTH XOAUTH2 support?

Do you know of any PHP SMTP library that supports AUTH XOAUTH2 when logging in to a SMTP server? The only one I have found is Zend-email via this tutorial. All the libraries I have seen only support ...
1
vote
1answer
23 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
0answers
31 views

Visual c# SMTP Receive mail and download attachment

I am looking to build a solution for handling zip attachments, currently our firewall cloaks all incomming zips and a user has to ask to me to unlock them with a simple unlock app we use, however this ...
1
vote
0answers
29 views

How to send mail from exchange server without smtp?

I am currently sending mails from my code using smtp, but seems like we will have to migrate to exchange server, is there a difference between the two? What changes I need to do in my code? ...
0
votes
1answer
78 views

How To Send Emails Using Google SMTP Server Using XAMPP?

In php.ini I set: SMTP = smtp.gmail.com smtp_port = 465 ; For Win32 only. ; http://php.net/sendmail-from sendmail_from = mygmail@gmail.com In my sendmail.ini: smtp_server=smtp.gmail.com ...
0
votes
2answers
21 views

Once you download the PIA for Office 2010, how do you get Visual C# to place it in your Add References .NET menu?

I've never posted so I'm a little nervous, but I've been making a program to compile and send an email after gathering the computer name and IP. I've got an understanding how to do do that just fine, ...
0
votes
1answer
21 views

Correct format for sending mime-encoded email using PHP's mail

What is the correct way to create an mime multipart email for sending with PHP's mail function? $boundary = uniqid(rand(), true); $headers = "From: <noreply@example.com>\r\n"; ...
1
vote
0answers
30 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) ...
-1
votes
2answers
32 views

SMTP host that allows us to send more than 2,000 emails per day [closed]

So I'm using https://github.com/Synchro/PHPMailer for a PHP project. We're connecting to a Google Apps account to send email. I don't want to use PHP's builtin mail() function because I prefer the ...
0
votes
0answers
79 views

Code Igniter 2.1.3: Sending email using smtp.googlemail.com

Hi guys, I am starting to learn the Code Igniter 2.1.3 framework through Jeffrey Way's tutorial on http://net.tutsplus.com/. However, I'm stuck on the "third video" where sending emails is tackled. So ...
0
votes
0answers
8 views

How do I disable AppleMail's testing if smtp server is online?

AppleMail seems to checking if smtp servers are online by default. However, virus scanners/and intrusion detections script check for hosts tying to access SMTP servers. The combination is causing our ...
0
votes
2answers
61 views

I want to send “Helo localhost” to a Smtp server with .NET (C# or VB)

In the current project, I'm asked to check connectivity to Smtp servers, via the response of "Helo" ("Ehlo" would be also fine, and actually, I could listen to any suggestion that could confirm ...
0
votes
0answers
24 views

SMTP AUTH PLAIN Command Base64 or Not?

I am reading Two RFC documents , RFC 4616 for the PLAIN SASL mechanism, and RFC 4954 for the AUTH command.. * The PLAIN message must be of the form : [authzid] UTF8NUL authcid UTF8NUL password ; ...
0
votes
0answers
12 views

Impossible to send emails to @@melinvest.ru from my server [closed]

I have a VPS with windows server 2008 R2 and Parallels. I have there a domain "xxx.com" when I try to send emails to any account in @melinvest.ru I always recieve the same answer from their server: ...
0
votes
0answers
25 views

Missing attachement in mail sent through Mime / SMTP Gmail Server (PHP, PEAR)

I am sending an Email from my server through SMTP Gmail using Pear's Mail Mime. However when I add an attachement it simply does not show up. $smtpinfo["host"] = "ssl://smtp.gmail.com"; ...
-1
votes
2answers
37 views

sand smtp mail php class SMTPClient

I SMTPClient class mail utf-8 post, but I did not do anything! Please Help me get thank you class SMTPClient { function SMTPClient ($SmtpServer, $SmtpPort, $SmtpUser, $SmtpPass, $from, $to, ...
0
votes
0answers
38 views

SMTP Timeout. Using our own server and swiftmailer. How can I increase the timeout? Error included

I'm looping through a list of customers, and sending files to them. The page often times out. Here is the exact error generated, minus my domain name. Fatal error: Uncaught exception ...
0
votes
1answer
67 views

Send email through SMTP

I have contact page on my website and I want users to enter Their name and email id (no password) and send email on button click. I did Google and all solutions i am getting requires user password, ...
0
votes
1answer
29 views

Email in loop sends the same file using Email class in Codeigniter

Hey I'm using Codeigniter's Email helpers, and expiriencing a wierd issue. I have the following code : $path = mpdf_create_billing($html); $this->load->library('email'); ...
0
votes
2answers
32 views

PHP and SMTP server

My simple code below: $headers = 'MIME-Version: 1.0' . "\r\n"; $headers .= 'Content-type: text/html; charset=UTF-8' . "\r\n"; $headers .= "From: info@mail.com \r\n"; $headers .= 'Bcc: test@mail.com' ...

1 2 3 4 5 67