1d1766043SAndrew Rist/************************************************************** 2cdf0e10cSrcweir * 3d1766043SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4d1766043SAndrew Rist * or more contributor license agreements. See the NOTICE file 5d1766043SAndrew Rist * distributed with this work for additional information 6d1766043SAndrew Rist * regarding copyright ownership. The ASF licenses this file 7d1766043SAndrew Rist * to you under the Apache License, Version 2.0 (the 8d1766043SAndrew Rist * "License"); you may not use this file except in compliance 9d1766043SAndrew Rist * with the License. You may obtain a copy of the License at 10d1766043SAndrew Rist * 11d1766043SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12d1766043SAndrew Rist * 13d1766043SAndrew Rist * Unless required by applicable law or agreed to in writing, 14d1766043SAndrew Rist * software distributed under the License is distributed on an 15d1766043SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16d1766043SAndrew Rist * KIND, either express or implied. See the License for the 17d1766043SAndrew Rist * specific language governing permissions and limitations 18d1766043SAndrew Rist * under the License. 19d1766043SAndrew Rist * 20d1766043SAndrew Rist *************************************************************/ 21d1766043SAndrew Rist 22d1766043SAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir#ifndef __com_sun_star_mail_XSmtpService_idl__ 25cdf0e10cSrcweir#define __com_sun_star_mail_XSmtpService_idl__ 26cdf0e10cSrcweir 27cdf0e10cSrcweir#ifndef __com_sun_star_mail_XMailService_idl__ 28cdf0e10cSrcweir#include <com/sun/star/mail/XMailService.idl> 29cdf0e10cSrcweir#endif 30cdf0e10cSrcweir 31cdf0e10cSrcweir#ifndef __com_sun_star_mail_XMailMessage_idl__ 32cdf0e10cSrcweir#include <com/sun/star/mail/XMailMessage.idl> 33cdf0e10cSrcweir#endif 34cdf0e10cSrcweir 35cdf0e10cSrcweir#ifndef __com_sun_star_io_NotConnectedException_idl__ 36cdf0e10cSrcweir#include <com/sun/star/io/NotConnectedException.idl> 37cdf0e10cSrcweir#endif 38cdf0e10cSrcweir 39cdf0e10cSrcweir#ifndef __com_sun_star_io_ConnectException_idl__ 40cdf0e10cSrcweir#include <com/sun/star/io/ConnectException.idl> 41cdf0e10cSrcweir#endif 42cdf0e10cSrcweir 43cdf0e10cSrcweir#ifndef __com_sun_star_mail_MailException_idl__ 44cdf0e10cSrcweir#include <com/sun/star/mail/MailException.idl> 45cdf0e10cSrcweir#endif 46cdf0e10cSrcweir 47cdf0e10cSrcweir#ifndef __com_sun_star_mail_SendMailMessageFailedException_idl__ 48cdf0e10cSrcweir#include <com/sun/star/mail/SendMailMessageFailedException.idl> 49cdf0e10cSrcweir#endif 50cdf0e10cSrcweir 51cdf0e10cSrcweir#ifndef __com_sun_star_datatransfer_UnsupportedFlavorException_idl__ 52cdf0e10cSrcweir#include <com/sun/star/datatransfer/UnsupportedFlavorException.idl> 53cdf0e10cSrcweir#endif 54cdf0e10cSrcweir 55cdf0e10cSrcweirmodule com { module sun { module star { module mail { 56cdf0e10cSrcweir 57cdf0e10cSrcweir/** 58cdf0e10cSrcweir Represents a SMTP service abstraction. 59cdf0e10cSrcweir 60cdf0e10cSrcweir @see com::sun::star::mail::XMailService 61cdf0e10cSrcweir @see com::sun::star::mail::XMailMessage 62cdf0e10cSrcweir 63*96af39f7SJürgen Schmidt @since OpenOffice 2.0 64cdf0e10cSrcweir */ 65cdf0e10cSrcweirinterface XSmtpService: ::com::sun::star::mail::XMailService { 66cdf0e10cSrcweir 67cdf0e10cSrcweir /** 68cdf0e10cSrcweir Send a mail message to its recipients. 69cdf0e10cSrcweir 70cdf0e10cSrcweir @param xMailMessage 71cdf0e10cSrcweir [in] the mail message to be sent. 72cdf0e10cSrcweir 73cdf0e10cSrcweir @throws com::sun::star::io::NotConnectedException 74cdf0e10cSrcweir if no user is currently connected to the mail server. 75cdf0e10cSrcweir 76cdf0e10cSrcweir @throws com::sun::star::mail::SendMailMessageFailedException 77cdf0e10cSrcweir if the message could not be sent because of invalid recipient 78cdf0e10cSrcweir addresses. The e-mail addresses of recipients have to conform to 79cdf0e10cSrcweir <a href="http://www.ietf.org/rfc/rfc822.txt">RFC 822</a>. 80cdf0e10cSrcweir 81cdf0e10cSrcweir @throws com::sun::star::mail::MailException 82cdf0e10cSrcweir is thrown on other errors that may happen during sending. 83cdf0e10cSrcweir A possible reason may be for instance that a file attachment 84cdf0e10cSrcweir specified in a mail message could not be found or accessed. 85cdf0e10cSrcweir 86cdf0e10cSrcweir @throws com::sun::star::datatransfer::UnsupportedFlavorException 87cdf0e10cSrcweir is thrown when the body of the mail message is provided in an 88cdf0e10cSrcweir unsupported mime content type or may be thrown if one of the file 89cdf0e10cSrcweir attachments specifies an unspupported mime content type. 90cdf0e10cSrcweir 91cdf0e10cSrcweir @see com::sun::star::mail::XMailMessage 92cdf0e10cSrcweir @see com::sun::star::io::NotConnectedException 93cdf0e10cSrcweir @see com::sun::star::mail::SendMailMessageFailedException 94cdf0e10cSrcweir @see com::sun::star::mail::MailException 95cdf0e10cSrcweir @see com::sun::star::datatransfer::UnsupportedFlavorException 96cdf0e10cSrcweir */ 97cdf0e10cSrcweir void sendMailMessage([in] XMailMessage xMailMessage) 98cdf0e10cSrcweir raises(com::sun::star::io::NotConnectedException, com::sun::star::mail::SendMailMessageFailedException, com::sun::star::mail::MailException, com::sun::star::datatransfer::UnsupportedFlavorException); 99cdf0e10cSrcweir}; 100cdf0e10cSrcweir 101cdf0e10cSrcweir}; }; }; }; 102cdf0e10cSrcweir 103cdf0e10cSrcweir#endif 104