smtp

Zend Framework: Fatal error when trying to use Zend Mail Transport to send multiple emails with attachments

I don't totally understand how all this works, but I'm getting this error: Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 261858 bytes) in /Users/andrew/Sites/myApp/library/Zend/Mail/Transport/Smtp.php on line 213 I'm running this code locally on my Mac running MAMP. Not sure if that has anything to do w...

Is there a Python MTA (Mail transfer agent)

Just wondering if there is a Python MTA. I took a look at smtpd but they all look like forwarders without any functionality. ...

How to delay the dispatch of an e-mail? Click button to send NOW but wait until 6.00pm until the email gets actually sent.

I have a php script that does some processing (creates remittance advice PDFs, self-billing invoices, Sage CSV file etc...) and at the end outputs a screen with a form, in which the names and e-mail addresses of the people paid appear. User makes a selection of names by clicking check boxes and then there is a Send button which sends out...

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 Zend_Mail to each one. However, I am noticing that the length of time that it takes for the script to complete increases as the number of su...

Looking for SMTP server

My site is hosted at Mediatemple but the IP address mail is being sent from is blacklisted so Hotmail messages are not delivered. Therefor I would like to use another SMTP server. Does anyone have suggestions? ...

Problem sending E-mail using C#

Hello, When I try to send E-mail using C# with gmail's smtp server,I get this error.. "The remote certificate is invalid according to the validation procedure". SSL is enabled Port used is 587 server name used is "Smtp.gmail.com". username and password is correct outlook express works fine on the same pc with the same settings The...

How do SMTP clients determine whether to use Explicit or Implicit SSL

Most mail clients that support SSL/TLS only require the user to say whether or not SSL should be enabled. The user doesn't have to know anything about Explicit & Implicit SSL and the differences between them. So, how does the mail client determine which type of SSL to use? Is it based on default port numbers? Does it just try one and th...

Storing SMTP outside the Web.Config File.

For some time now I've been storing my connection and app settings in an external file and just referencing that file via my web.config. This works really well because it allows me to keep separate connection strings and app settings. This is really handy since I find during development I will often make many changes to the webconfig and...

Drupal 6 won't send email, for account activation etc.

I'm running my own LAMP server locally. Something i need to setup? Should it be able to send email using php-mail, without havin to configure smtp. ...

Looking for smtp service with reporting features

Because the IP of the SMTP server that is being used by my Gridserver account at Mediatemple is blacklisted I'm looking for an off site SMTP service to send mails from my PHP application to (verification mails, notifications, etc). I'm using CampaignMonitor.com for mass mailings, but for all other mails I would like to use another serv...

Unable to send mail through Google SMTP with PHPMailer

Hello, I'm trying to send out mail using Google's SMTP in combination with PHPMailer, but I can't get it to work. This is my code: $mail->IsSMTP(); $mail->Host = "smtp.gmail.com"; $mail->SMTPAuth = true; $mail->SMTPSecure = "ssl"; $mail->Username = "[email protected]"; $mail->Password = "**********"; $mail->Port = "465"; First I do n...

How to send emails with PHP from a heavily firewalled network?

I wish to send an email from my localhost machine (using PHPs mail function) but I can not do this since I don't have a mail server. In addition, I need to be able to send emails through a network that is heavily firewalled (to what extent I do not know yet). My idea is to make use of "QK SMTP Server 3" and get that to use an external s...

SMTP Headers in VB.Net without Redemption

I'm writing a mail component for a VB.Net app, and need to handle mails differently that are "Sent on Behalf" of someone. Although the Outlook Object Model exposes "SentOnBehalfOfName", it doesn't expose the email address for that party. Supposedly it's in the "OtherHeaders" field of the SMTP header, but I don't see an easy way to get ...

Encrypting/Decrypting an SMTP Password in a Client/Server App

I have a client app that needs to save a username/password for an SMTP Server. This data will be going into SQL Server 2005, and consumed by my server app. The server app will use the System.Net.Mail namespace to send e-mail messages using the supplied credentials (and from that user's e-mail address). How can I encrypt/decrypt the passw...

How can I delay mail delivery through an SMTP relay, possibly sendmail

I have a requirement to delay mail delivery through an SMTP Relay. i.e. Mail message is successfully recieved at time T. Forward Message to destination at time T+4hours. Is this possible in sendmail or any other SMTP Relay. Deployment platform is IBM AIX. ...

Send Email on GMail SMTP under medium trust

Hi 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 [SecurityException: Request for the permission of type 'System.Net.Mail.SmtpPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77...

Sending email in Java using Apache Commons email libs

I am using Apache Commons Email library to send emails, but I am not able to send them via GMail SMTP server. Can anyone provide sample code which works with GMail SMTP server and others? I am using the following code which does not work: String[] recipients = {"[email protected]"}; SimpleEmail email = new SimpleEmail(); email.setHos...

Two emails when sent via SMTP

I've used two PHP email scripts and routing it through my SMTP server, when I do this though it sends two of the same email. When I use mail() this doesn't happen, but I'd much rather use SMTP. Any ideas why this may be occuring? ...

Windows SMTP Server with Server 2008 and PHP

For some reason the iis smtp server and php are not communicating properly. I have verified that the smtp is working by telneting to it and doing the mail commands and I'm able to receive an email. In addition, I followed this link http://support.microsoft.com/?id=297700 and was able to receive an email. But whenever I try to send ema...

Problem configuring Spring's MailSender for our SMTP-server (but GMail works)

Hi, I have some problems sending mails through SMTP using Spring's MailSender interface and the concrete implementation JavaMailSenderImpl. I'm able to send mail through GMail, but not through our company SMTP-server (Postfix). Correct configurations To see that I have the correct configuration I used the excellent mail sender ssmtp. I...