ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Dropping Data to a VB.net Program (https://www.excelbanter.com/excel-programming/285416-dropping-data-vbulletin-net-program.html)

BrianElson

Dropping Data to a VB.net Program
 
Does anybody know how to send information to a VB.NET
program. What I want to do is have VBA from excel call a
VB.NET program with and the vb.net program can them send
e-mail using the smtp server. The information from excel
would be the e-mail addresses and then the message.
There is an exaple of a vb.net program onthe MSDN web
page using web.mail. And I would like to modify it for
this use.

Dim email As New System.Web.Mail.MailMessage()
email.To = "RecipientAddress"
email.From = "SenderAddress"
email.Body = "MessageText"
email.Subject = "SubjectText"
email.BodyFormat = Web.Mail.MailFormat.Text
System.Web.Mail.SmtpMail.SmtpServer = "SmtpServerName"
System.Web.Mail.SmtpMail.Send(email)

Brian Elson


BrianB

Dropping Data to a VB.net Program
 
In the absence of another reply, I don't know the answer either. Yo
might get beter response from a forum that deals with VB.NET.

I assume you know that it is possible to send emails from within Exce
(MS Office) itself - there are numerous code examples available

--
Message posted from http://www.ExcelForum.com



All times are GMT +1. The time now is 03:38 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com