Michaƫl Todorovic
|
Friday 29 October 2010 2:48:56 am
Hello, In ezpublish 4.2, I was sending emails with attachments to lotus notes and it was working. Now in ezpublish 4.3, I do the same but attachments are not shown in lotus. I see the email source instead (with mime and base64 encoded attachments). When I send the same email on other mail client (like zimbra or yahoo), attachments are shown correctly. Here the code I'm using :(from http://ezcomponents.org/docs/api/latest/introduction_Mail.html#sending-a-mail-with-the-composer)
"
- <?php
- require_once 'tutorial_autoload.php';
-
- // Create a new mail object
- $mail = new ezcMail();
-
- // Specify the "from" mail address
- $mail->from = new ezcMailAddress( '[email protected]', 'Bernard Bernoulli' );
-
- // Add one "to" mail address (multiple can be added)
- $mail->addTo( new ezcMailAddress( '[email protected]', 'Wendy' ) );
-
- // Specify the subject of the mail
- $mail->subject = "This is the subject of the example mail";
-
- // Create a text part to be added to the mail
- $textPart = new ezcMailText( "This is the body of the example mail." );
-
- // Create a file attachment to be added to the mail
- $fileAttachment = new ezcMailFile( "~/myfile.jpg" );
-
- // Specify the body of the mail as a multipart-mixed of the text part and the file attachment
- $mail->body = new ezcMailMultipartMixed( $textPart, $fileAttachment );
-
- // Create a new MTA transport object
- $transport = new ezcMailMtaTransport();
-
- // Use the MTA transport to send the created mail object
- $transport->send( $mail );
-
- ?>
"
What can I do ? Thank you
|