Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 254437
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T21:50:47+00:00 2026-05-11T21:50:47+00:00

Usage: Users create pretty HTML news letters in another app. They post the newsletter

  • 0

Usage:

Users create pretty HTML news letters in another app. They post the newsletter to the web, but they also want to set the contents of the HTML news letter file as the body of an email and send it using Application In Question.

The users understand to use absolute link and image references when sending an E Newsletter.

Environment:

AIQ is a VB.Net app deployed via ClickOnce. It is an intranet app; one can be sure MS Office 2003 and the interop 11 dlls are on the target machines.

Restrictions:

MAPI is out. It mangles the HTML.

Since it is a ClickOnce deployment, we can’t register dlls (I think, correct me if I am wrong). Therefore CDO and COM is out (again, I may be wrong…. I would be happy to be proven so).

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-11T21:50:47+00:00Added an answer on May 11, 2026 at 9:50 pm

    I’m not sure exactly what you’re asking. If you’re asking about HOW to send an email, the .NET Framework includes the System.Net.Mail namespace for sending out email via SMTP.

    You can create a new SmtpClient. If it’s deployed on a LAN then you can set the Host property to an Exchange server or other SMTP server.

    You can then create a MailMessage with the body set to the HTML content to send.

    Here’s a sample:

     //create the mail message
     MailMessage mail = new MailMessage();
    
     //set the addresses
     mail.From = new MailAddress("me@mycompany.com");
     mail.To.Add("you@yourcompany.com");
    
     //set the content
     mail.Subject = "This is an email";
     mail.Body = "this is a sample body with html in it. <b>This is bold</b> <font color=#336699>This is blue</font>";
     mail.IsBodyHtml = true;
    
     //send the message
     SmtpClient smtp = new SmtpClient("127.0.0.1");
     smtp.Send(mail);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to create a JDBC Realm for my web app. Since my users
We're montioring usage of a certain resources by monitoring users logins (We can see
I know usage of Zend_Db_Select is optional, but I was wondering if there was
I am aware of usage of MANIFEST file in a mobile application, but am
Trying out the example usage of codebrew rails-backbone , everything works fine but the
I'm trying to create sort of telephony gateway for home usage, in case I
On a PHP/MySQL application... We are planning to offer users the ability to create
I want to create a community around a current iPhone app I've built. It
i would like to make a simple avatar system for my users. Usage is
I have created a binding to create a tag for Html.ActionLink html helper like

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.