Huge Collections of Software Manuals and Knowledgebase

GreatManuals.com
Huge Collections of Software Manuals and Knowledgebase

 
Home Contact Us Request to publish your help manuals Request to remove your help manuals
Introduction
» Fast Email Delivery Engine
» Getting Started
Email Campaigns
» Creating Campaigns with Wizard
» Creating Campaigns
» Message Editor
» Using Campaigns
» Sending Statistics
» Tracking Statistics
Lists
» Lists Overview
» List Operations
» Importing Lists
» Exporting Lists
Queries & Databases
» Creating Queries
» Using Queries
» Managing Databases
Scheduled Tasks & Templates
» Scheduler Overview
» Tool Bar Descriptions
» Creating Templates
» Using Templates
Scripts & Settings
» Scripts Overview
» Managing Scripts
» General
» Sending Mode
» SMTP Server
» DNS Settings
» Proxy Settings
» Web Page
» Tracking
» Domains
» Public DNS Servers
» Spam & Black Lists
Snapshots & Object Model
» Snapshots Overview
» From Queries
» From Inner List
» From Imported List
» From Single URL
» Using Object Model in ASP
» Using Object Model in ASP.NET
» Using Object Model in C#
» Using Object Model in C++
Order & Support Details
» Troubleshoot
» Frequently Asked Questions
» Support
» Order
 

Using Object Model in ASP.NET

The sample source is in C:\Program Files\Lencom Software Inc\Fast E-Delivery Engine\Samples\FEDE ASP.NET Sample.zip

private void ButtonSend_Click(object sender, System.EventArgs e)
{
if ( (TextBoxFrom.Text != null && TextBoxFrom.Text.Length == 0) ||
(TextBoxTo.Text != null && TextBoxTo.Text.Length == 0) ||
(TextBoxSubject.Text != null && TextBoxSubject.Text.Length == 0)
) return;

string Address = TextBoxTo.Text;
EmailSender.Message message = new Message();
message.From = TextBoxFrom.Text;
message.To = Address;
message.Subject = TextBoxSubject.Text;
message.MimeFormatted = false; // If the letter is in the text format, then MimeFormatted = false
message.TextBody = TextBoxBody.Text;

Result result = emailSender.Send(message, message.To);

TextBoxLog.Text = string.Format("Sent to: {0} \r\n", message.To);
TextBoxLog.Text += string.Format("Result: {0} \r\n", result.SMTPMessage);
TextBoxLog.Text += string.Format("Log: {0} \r\n", result.Log);
}

Instructions

professional data recovery download data recovery software undelete memory card files
flash drive recovery pen drive undelete digital photo restore
notebook data recovery hidden keylogger data retrieval software

1.Add access rigths for ASPNET user to:

C:\Documents and Settings\All Users\Application Data\Lencom

Troubleshoot

1. Register Object Model

C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\regasm C:\Program Files\Lencom Software Inc\Fast E-Delivery Engine\EmailSender.dll /codebase

Home | Contact Us | Request to publish your help manuals | Request to remove your help manuals