home *** CD-ROM | disk | FTP | other *** search
ColdFusion Markup Language | 2001-12-06 | 1.4 KB | 48 lines |
- <html>
- <head>
- <title>AdvSMTP Component</title>
- </head>
- <body>
- <cfobject class="AdvSMTP.SMTP" action="CREATE" name="AdvSMTP">
- <cfset AdvSMTP.Bcc = #Form.bcc#>
- <cfset AdvSMTP.Body = #Form.Body#>
- <cfset AdvSMTP.Cc = #Form.cc#>
- <cfset AdvSMTP.LogFile = #Form.LogFile#>
- <cfset AdvSMTP.Logging = #Form.Logging#>
- <cfset AdvSMTP.Priority = #Form.Priority#>
- <cfset temp = AdvSMTP.CustomHeader(#Form.MailerID#,#Form.MailerValue#)>
- <cfif #Form.MimeAttach1# Neq "">
- <cfset temp = AdvSMTP.MimeAttach(#Form.MimeAttach1#,#Form.Delete1#)>
- </cfif>
- <cfif #Form.MimeAttach2# Neq "">
- <cfset temp = AdvSMTP.MimeAttach(#Form.MimeAttach2#,#Form.Delete2#)>
- </cfif>
- <cfif #Form.Port# Neq "">
- <cfset AdvSMTP.Port = #Form.Port#>
- </cfif>
- <cfif ParameterExists(Form.Lookup)>
- <cfset AdvSMTP.Lookup = true>
- <cfelse>
- <cfset AdvSMTP.Lookup = false>
- </cfif>
- <cfif ParameterExists(Form.Receipt)>
- <cfset AdvSMTP.Receipt = true>
- <cfelse>
- <cfset AdvSMTP.Receipt = false>
- </cfif>
- <cfset AdvSMTP.Server = #Form.Server#>
- <cfset AdvSMTP.Subject = #Form.Subject#>
- <cfset AdvSMTP.Type = #Form.Type#>
- <cfif #Form.CharsPerLine# Neq "">
- <cfset AdvSMTP.CharsPerLine = #Form.CharsPerLine#>
- </cfif>
- <cfset temp = AdvSMTP.SendMail(#Form.From#,#Form.To#)>
- <cfif #AdvSMTP.IsError# Eq 1>
- <cfoutput>#AdvSMTP.ErrorReason#</cfoutput> <br>
- <cfelse>
- <cfoutput>Successfully Done</cfoutput> <br>
- </cfif>
- <a href="dsp_sendmail.htm">Back</a>
- </body>
- </html>
-