svn path=/branches/mono-1-1-9/mcs/; revision=51216
[mono.git] / mcs / class / System.Web / System.Web.Mail / SmtpMail.cs
1 //
2 // System.Web.Mail.SmtpMail.cs
3 //
4 // Author:
5 //    Lawrence Pit (loz@cable.a2000.nl)
6 //    Per Arneng (pt99par@student.bth.se) (SmtpMail.Send)
7 //
8
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 // 
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 // 
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 //
29
30 using System;
31 using System.Net;
32 using System.Net.Sockets;
33 using System.Text;
34 using System.IO;
35 using System.Reflection;
36
37 namespace System.Web.Mail
38 {
39         /// <remarks>
40         /// </remarks>
41         public class SmtpMail
42         {
43                 private static string smtpServer = "localhost";
44                 
45                 // Constructor          
46                 private SmtpMail ()
47                 {
48                         /* empty */
49                 }               
50
51                 // Properties
52                 public static string SmtpServer {
53                         get { return smtpServer; } 
54                         set { smtpServer = value; }
55                 }
56                 
57                 
58                 public static void Send (MailMessage message) 
59                 {
60                                                     
61                     try {
62                         
63                         // wrap the MailMessage in a MailMessage wrapper for easier
64                         // access to properties and to add some functionality
65                         MailMessageWrapper messageWrapper = new MailMessageWrapper( message );
66                         
67 #if TARGET_JVM
68                         string currentSmtpServer = smtpServer;
69                         if (currentSmtpServer == "localhost")
70                         {
71                                 java.net.InetAddress address = java.net.InetAddress.getLocalHost();
72                                 currentSmtpServer = address.getHostAddress();
73                         }
74                         SmtpClient smtp = new SmtpClient (currentSmtpServer);
75 #else
76                         SmtpClient smtp = new SmtpClient (smtpServer);
77 #endif
78                         
79                         smtp.Send (messageWrapper);
80                        
81                         smtp.Close ();
82                     
83                     } catch (SmtpException ex) {
84                         // LAMESPEC:
85                         // .NET sdk throws HttpException
86                         // for some reason so to be compatible
87                         // we have to do it to :(
88                         throw new HttpException (ex.Message, ex);
89                     
90                     } catch (IOException ex) {
91                         
92                         throw new HttpException (ex.Message, ex);
93                         
94                     } catch (FormatException ex) {
95                         
96                         throw new HttpException (ex.Message, ex);
97                     
98                     } catch (SocketException ex) {
99                         
100                         throw new HttpException (ex.Message, ex);
101                         
102                     }
103                     
104                 }
105                 
106                 public static void Send (string from, string to, string subject, string messageText) 
107                 {
108                         MailMessage message = new MailMessage ();
109                         message.From = from;
110                         message.To = to;
111                         message.Subject = subject;
112                         message.Body = messageText;
113                         Send (message);
114                 }
115         
116         }
117         
118 } //namespace System.Web.Mail