Asp.Net Advanced Mail
Version 1.1.9  how it workHelp and tutorialsVersion revisionAdd to cart
How does it work - Body panel
Server Panel
Data Panel
Mail Panel
Body Panel
Upload Panel
Images Panel
Files Panel
Replace Panel
Price: 52,00 €
Usd. 66,12
Currency conversion according with PayPal
Flash Tutorials

   
The panel to define the E-Mail Subject and Body
   
Subject The E-mail Subject
   
Body The E-mail Body
   
Body from File Select the file that is the E-mail body.
The file content will be read before the mail is send so You can modify the content and be sure that all the successive mail will be down.
The body text can contain HTML code.
   

Body from dynamic page

With this new feature you can get the body of your mail from a dynamic page.
The HTML code will be the HTML code generated by this page like you open this page in a browser.
You can also send parameter to this page.

This page can be in your site or in each other internet/intranet domain.

This page can be any type of dynamic page (asp, asp.net, cgi, php, cfm, jsp, etc...)


The syntax to get this page from your server is:
"/YourFolder/YourPage.asp"

The syntax to get this page from an Internet domain is:
"http://www.Domain.com/YourFolder/YourPage.asp"

You can send parameters to this page and in this case we have many case:

Case 1 - Get parameter from the form field where you apply the extension:
This is an email send on the onSubmit Form Event
"/YourFolder/YourPage.asp?Parameter1=" & Request("<YourFieldNameHere>") & "&Parameter2=" & Request("<YourFieldNameHere>")

Case 1 - Get parameter from the page that call the sendMail page:
This is an email send on the onLoadPage Event
"/YourFolder/YourPage.asp?Parameter1=" & Request("<YourFieldNameHere>") & "&Parameter2=" & Request("<YourFieldNameHere>")

Case 3 - Get Session value:
"/YourFolder/YourPage.asp?Parameter1=" & session("<YourSessionNameHere>") & "&Parameter2=" & Request("<YourFieldNameHere>")
The page You call cannot get the value of the Session Object directly You must send this value in the parameter string. This because the component that call this page create a new session for the server.

You can add how many parameter you need.

Verify exactly the syntax because if the syntax is not correct You receive an error HTTP 500.100 on load the page.

   
Get the E-mail body from file.
The content of the file is immediately read and insert in the Body textarea so You can modify it immediately.
Insert the refence to all the form field in the body text and in the replace list
   
This button is for the new features: Create generic password for registration user.
Insert the special tag #_Dwz_Password_# in the body text but only if you manually write the body of the mail. If you use a body mail from File or DataBase or Dynamic Page you must insert this special tag yourself in the page you use like body text. (For more info see the Advanced Mail - PlugIn Insert
WARNING!! Don't modify my special tag.