Author: Derick Rethans Date: 2006-01-22 13:16:21 +0100 (Sun, 22 Jan 2006) New Revision: 1996
Log: - Fixed example. Modified: packages/Mail/trunk/src/mail.php Modified: packages/Mail/trunk/src/mail.php =================================================================== --- packages/Mail/trunk/src/mail.php 2006-01-20 16:03:32 UTC (rev 1995) +++ packages/Mail/trunk/src/mail.php 2006-01-22 12:16:21 UTC (rev 1996) @@ -20,10 +20,10 @@ * $mail = new ezcMail; * $mail->from = new ezcMailAddress( '[EMAIL PROTECTED]', 'Adrian Ripburger' ); * $mail->addTo( new ezcMailAddress( '[EMAIL PROTECTED]', 'Maureen Corley' ) ); - * $mail = mail->subject = "Hi"; + * $mail->subject = "Hi"; * $mail->body = new ezcMailText( "I just mail to say I love you!" ); * $transport = new ezcMailTransportMta(); - * $transport->send( $this->mail ); + * $transport->send( $mail ); * </code> * * You can also derive your own mail classes from this class if you have special -- svn-components mailing list [email protected] http://lists.ez.no/mailman/listinfo/svn-components
