It looks like there are some great libraries out there to do DomainKeys signing of emails on C#/.NET, but I'm having a really hard time finding the same kind of support for PHP. Maybe I'm not looking in the right place?

The only one I found is http://php-dkim.sourceforge.net/; it looks incredibly hacky and supports PHP4 only. Considering how popular PHP is, and how critical DomainKeys are for email classification as non-spam, I'd expect better tools; do you know of any? Any other tricks you'd recommend?

Extra info: I'm using an external SMTP provider because I need to send out thousands of emails per day.

link|improve this question

feedback

5 Answers

up vote 7 down vote accepted

I'd recommend DKIM support at the MTA level so all your server generated email for a given domain is signed by default. (unless you have a really good reason to not sign all server generated email for a domain).

The best starting point in my googling to get DKIM setup on LAMP with dkim-milter and sendmail (on CentOS 5.2 in my case) was Jeff Atwood's post about sending emails through code.

I would agree with him that the first 2 things you should address are reverse PTR record and DKIM signing.

Also very important:

  1. IP address of the box to send email not already being blacklisted.
  2. make sure postmaster@emailsendingdomain.com is a valid email box
  3. if your server generated email needs to appear to come from somewhere else (like a contact form needing to come from name/email provided in a form) follow these guidelines for email headers.

Here is the email ip address blacklist checker that I used.

Those 5 things will solve perhaps 95% of your email deliverability issues.

This Guide for Fedora/dkim-milter/postfix is also very good.

The PHP mail library I use for my app is PHPMailer 5.1 which has DKIM support (and is PHP 5 only), but after doing the research, I decided implementing at the sendmail level was a better solution. As you can see, even the author of PHPMailer 5.1 does not suggest DKIM at the PHP mail library level is the best solution http://dkim.worxware.com/.

Best of luck to you.

link|improve this answer
Useful info, but not for me, sorry. I'm using an external SMTP email provider and have no control over their code. I have to use them as i'm sending thousands of emails. The rest of the suggestions do not directly apply to my question. – Alex Weinstein Jun 12 '10 at 7:04
@Alex: I was about to code my own DKIM implementation for PHP but I'm with jigglee: the MTA should handle it. Imagine that the MTA alters / reformats the email content, there is no way for PHP to know that à priori and that would make the private/public keys to fall apart, it would have the adverse effect. – Alix Axel Jul 28 '10 at 18:55
UPDATE: I have since found a better combination: postfix + opendkim. I know this still doesn't addresses Alex's issue of external SMTP provider, but I know others who find this thread searching who do have root on the mail server. This blog post is an excellent guide to set it up. – codercake Jul 19 '11 at 16:54
@AlexWeinstein if this solution is not for you, why is marked as the answer? I'm too working with a third-party email provider and this doesn't seems to be the right answer... – GarciaWebDev Apr 12 at 17:09
feedback

Have you try : phpMailDomainSigner It support DKIM-Signature and DomainKey-Signature in Object Oriented Style.

Here some example:

// Create mailDomainSigner Object
include_once './lib/class.mailDomainSigner.php';

$mds = &new mailDomainSigner($domain_priv,$domain_d,$domain_s);
$new_data = $mds->sign(
                $mail_data,
                "Message-ID:Subject:From:Content-Type:MIME-Version:Content-Transfer-Encoding:Received:To:Date",
                true,true,false);
link|improve this answer
This will take you to the download for the latest version: code.google.com/a/apache-extras.org/p/phpmailer/downloads/list Also, the original project admin for PHPMailer created a a website for creating the DKIM files needed to sign emails with PHPMailer: dkim.worxware.com – CameronW Sep 19 '11 at 18:52
feedback

A class solely for DKIM which is a spin-off from PHPMailer, but with improvements regarding the respect of the RFC and nice-and-clean code :

https://sourceforge.net/projects/dkim-class-php/

Example :

include_once('dkim.class.php');
$dkim = new DKIM();
$dkim_header = $dkim -> get_DKIM_header($to, $subject, $message, $headers);
mail($to, $subject, $message, $dkim_header.$headers);
link|improve this answer
feedback

You can also try the SquirrelMail plugin,

http://eder.us/projects/domainkeys/

link|improve this answer
feedback

PHPMailer has some support for DKIM signing.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.