email

Sending mass emails programmatically

I need to be able to periodically send email alerts to subscribed users. PHP seems to struggle with sending one message, so I'm looking for good alternatives. Any language will do, if the implementation is fast enough. The amount of mails sent will eventually be in the thousands. If purchasing licensed software can be avoided, so much ...

Is there a php library for email address validation?

I need to validate the email address of my users. Unfortunately, making a validator that comforms to standards is hard Here is an example of a regex expression that tries to comform to standard Are there any PHP library (preferably, open-source) that validates email address? ...

php - imap - moving emails on antoher account

I am working on a script that downloads emails and stores them in a db, I usually receive thousands of emails on this account, once downloaded the mails are deleted. Being paranoic, I want to have at least one month backup of my emails, but I cannot clutter my main mailbox address leaving them in there. So i need to move the mails (via...

Avoid being blocked by web mail companies for mass/bulk emailing ?

Our company is sending out a lot of emails per day and planning to send even more in future. (thousands) Also there are mass mailouts as well in the ten thousands every now and then. Anybody has experience with hotmail, yahoo (web.de, gmx.net) and similar webmail companies blocking your emails because "too many from the same source in a...

How can I save email attachments to the server in PHP?

I've been battling PHP's email reading functions for the better part of two days. I'm writing a script to read emails from a mailbox and save any attachments onto the server. If you've ever done something similar, you might understand my pain: PHP doesn't play well with email! I've connected to the POP3 server and I can iterate the file...

Making email addresses safe from bots on a webpage?

When placing email addresses on a webpage do you place them as text like this: [email protected] or use a clever trick to try and fool the email address harvester bots? For example: HTML Escape Characters: joe.somebody@company.&...

How do I create an email-sending service?

I've been kicking around this idea for a while and would like to read your thoughts. I'd like to create a .NET service to send and track email messages. My rough ideas: Within various applications, serialize instances of .NET email (System.Net.Mail.MailMessage) objects and put them into a database or file system queue The mail servic...

Why does System.Net.Mail fail where System.Web.Mail works.

I can get both System.Net.Mail and System.Web.Mail to work with GMail, but I can't get them both to work with smtp.att.yahoo.com. I get the SMTP settings from my own Web.config keys. These settings work when I send using System.Web.Mail, but fail with System.Net.Mail. <add key="SmtpServer" value="smtp.att.yahoo.com"/> <add key="Smt...

How to open a new email, and assign subject, using .NET Compact Framework

Basically I'm trying to accomplish the same thing that "mailto:[email protected]" does in Internet Explorer Mobile. But I want to be able to do it from a managed Windows Mobile application. I don't want to send an email pro grammatically in the background. I want to be able to create the email in Pocket Outlook and then let the user...

How to change envelope from address using PHP mail?

I am using PHP with Apache on Linux, with sendmail. I use the PHP mail() function. The email is sent, but the envelope has the Apache_user@localhostname in MAIL FROM (example [email protected]) and some remote mailservers reject this because the domain doesn't exist (obviously). Using PHP mail(), can I force change the envelope M...

What is the best way to organise e-mails in MS Outlook?

Every software development professional (and especially project managers) has to deal with a never ending stream of e-mails. What is the best way of organising them in MS Outlook? Obviously some fancy issue tracking tools give more flexibility but I am interested in plain vanilla approach that can be deployed within most organisations. ...

Email Address Validation for ASP.NET

What do you use to validate an email address on a ASP.NET form. I want to make sure that it contains no XSS exploits. This is ASP.NET 1.1 ...

How do I send a binary attachment in an email with Java using the JavaMail API?

Using JDK1.5 how does one send a binary attachemnt (such as a PDF file) easily using the JavaMail API? ...

Is there a way to determine whether an e-mail reaches its destination?

I have a PHP script that sends out critical e-mails that needs to reach its destination. I know how to check whether the e-mail sent successfully, the only issue is knowing whether it actually got to its recipient. Any suggestions? If there is no way of knowing, how would you handle this situation? ...

What is the best way to implement a petition? (email send after signing the petition)

I need to build a little webapp but I'm not sure what is the best thing to do. A person that subscribe the petition is signing an email sent to X. This will be also saved to a db in order to show online who subscribed. The idea is to have a standard text message, the user submit his name and that name goes into the message as signature...

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 issue on and off for many months, and I just can't seem to get a clear picture of what I need to do. Do I just need an MTA like postfix? ...

Oracle 10g - UTL_MAIL package

Hi everyone, I'm having a bit of trouble with the UTL_MAIL package in Oracle 10g, and was wondering if anyone had any solutions? I connect to my DB as SYSMAN and load the following two scripts; @C:\oracle\product\10.2.0\db_1\rdbms\admin\utlmail.sql @C:\oracle\product\10.2.0\db_1\rdbms\admin\prvtmail.plb I set up the SMTP server; AL...

What is the best regular expression for validating email addresses?

Over the years I have slowly developed a regular expression that validates MOST email addresses correctly, assuming they don't use an IP address as the server part. Currently the expression is: ^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,4})$ I use this in several PHP programs, and it works most of the time. How...

How do I configure email notification on new case comment in salesforce.com?

In salesforce.com, I have a workflow that triggers when a new case comment is added via the self-service portal. The workflow rule updates the Case.Status field, which fires another workflow rule on the Case object itself. The end result is an email to the case owner that is notified that a new case comment has been added. However, I ...

Does LISTSERV have an API?

I have a custom application that was built to send opt-in newsletters and marketing emails. It does a pretty good job sending mail, but it doesn't respond at all to bounces or unsubscribe requests. It seems to me that rather than building that functionality myself I should use a mailing list manager such as LISTSERV. However, I'm not su...