Programmer's Reference Guide

Controlling the MIME Boundary

Additional Headers

Arbitrary mail headers can be set by using the addHeader() method. It requires two parameters containing the name and the value of the header field. A third optional parameter determines if the header should have only one or multiple values:

Example #1 Adding E-Mail Message Headers

<?php
require_once 'Zend/Mail.php';
$mail = new Zend_Mail();
$mail->addHeader('X-MailGenerator', 'MyCoolApplication');
$mail->addHeader('X-greetingsTo', 'Mom', true); // multiple values
$mail->addHeader('X-greetingsTo', 'Dad', true);
        

Controlling the MIME Boundary
blog comments powered by Disqus

Select a Version

Languages Available

Components

Search the Manual