473,604 Members | 2,487 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

MailMessage question

Hi MSDN Team!

I have a doubt about the "MailMessag e" class in Framework .NET 1.1.
My SMTP server works in a local network that no have access to the internet
for security reasons. And in my network we have an application that send
emails to other department inside the company using us SMTP server that
requires authentication. ..

I'd like to know why when I use the "MailMessag e" Class with "SMTPServer "
class to authenticate in my SMTP Server I have to send an URL as
"http://schemas.microso ft.com/cdo/configuration/"; to authenticate. Is it the
unique mode to send emails in my situation? What's the other mode to send
emails without pass by Microsoft's URL?

Thanks,

--
MSG Servicos de Informatica
Rio de Janeiro / Brazil
Nov 19 '05 #1
7 1560
=?Utf-8?B?TVNHIFNlcnZ pY29zIGRlIEluZm 9ybWF0aWNh?=
<me*****@newsgr oup.nospam> wrote in
news:B1******** *************** ***********@mic rosoft.com:
I'd like to know why when I use the "MailMessag e" Class with
"SMTPServer "
class to authenticate in my SMTP Server I have to send an URL as
"http://schemas.microso ft.com/cdo/configuration/"; to authenticate. Is
it the unique mode to send emails in my situation? What's the other
mode to send emails without pass by Microsoft's URL?


You'll need to be using .NET 1.1 to use these fields.

With the System.Web.Mail classes, you'll have to pass in these fields,
since authentication is not supported out of the box.

You might want to take a look at the field:
http://schemas.microsoft.com/cdo/con...tion/sendusing

0 is basic. 1 is NTML. 2 is SMTP authentication.

--
Lucas Tam (RE********@rog ers.com)
Please delete "REMOVE" from the e-mail address when replying.
http://members.ebay.com/aboutme/coolspot18/
Nov 19 '05 #2
Thanks for Lucas's inputs,

Hi Friend,

For the "http://schemas.microso ft.com/cdo/configuration/ " , it's not a
normal URL, it's a configuration URI(maybe we should say it's a key for
configuring certain setting of the CDO object):

#http://schemas.microsoft.com/cdo/configuration/ Namespace
http://msdn.microsoft.com/library/en..._configuration.
asp?frame=true

In fact, the System.Web.Mail components in .net framework is using the CDO
object underlying. And the
http://schemas.microsoft.com/cdo/configuration/ contains a collection of
schema URIs( keys) to identify a set of settings of the CDO component , we
can configure them thorugh these URIs at runtime.

BTW, here is a FAQ site of System.Web.Mail which contains may common
question on the web mail components:

http://www.systemwebmail.com/

Hope also helps. Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
--------------------
| Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
| Subject: Re: MailMessage question
| From: Lucas Tam <RE********@rog ers.com>
| References: <B1************ *************** *******@microso ft.com>
| Organization: None of Your Business!!!
| Message-ID: <Xn************ *************** @127.0.0.1>
| User-Agent: Xnews/??.01.30
| X-Face:
#gFwhH/LPM9"eq<Dzb3~[P'7%dS98vHkcFbX ;SjezglosS.OP?: tzhHT7o=G03o0%S t#;xTbMCCP
'rF/EnVDK-y*a(Qh3J)+Fn]"/&@D(dOG=ITH!\af BA$O}D";gSvoEpf d
| Reply-To: RE********@roge rs.com
| Lines: 25
| X-Complaints-To: ab***@easynews. com
| X-Complaints-Info: Please be sure to forward a copy of ALL headers
otherwise we will be unable to process your complaint properly.
| Date: Thu, 11 Aug 2005 15:11:22 GMT
| Path:
TK2MSFTNGXA01.p hx.gbl!TK2MSFTF EED02.phx.gbl!t ornado.fastwebn et.it!tiscali!n e
wsfeed1.ip.tisc ali.net!news.gl orb.com!newsfee d2.easynews.com !easynews.com!e a
synews!easynews-local!fe04.news .easynews.com.P OSTED!not-for-mail
| Xref: TK2MSFTNGXA01.p hx.gbl
microsoft.publi c.dotnet.framew ork.aspnet:1174 18
| X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet
|
| =?Utf-8?B?TVNHIFNlcnZ pY29zIGRlIEluZm 9ybWF0aWNh?=
| <me*****@newsgr oup.nospam> wrote in
| news:B1******** *************** ***********@mic rosoft.com:
|
| > I'd like to know why when I use the "MailMessag e" Class with
| > "SMTPServer "
| > class to authenticate in my SMTP Server I have to send an URL as
| > "http://schemas.microso ft.com/cdo/configuration/"; to authenticate. Is
| > it the unique mode to send emails in my situation? What's the other
| > mode to send emails without pass by Microsoft's URL?
|
| You'll need to be using .NET 1.1 to use these fields.
|
| With the System.Web.Mail classes, you'll have to pass in these fields,
| since authentication is not supported out of the box.
|
| You might want to take a look at the field:
| http://schemas.microsoft.com/cdo/con...tion/sendusing
|
| 0 is basic. 1 is NTML. 2 is SMTP authentication.
|
| --
| Lucas Tam (RE********@rog ers.com)
| Please delete "REMOVE" from the e-mail address when replying.
| http://members.ebay.com/aboutme/coolspot18/
|

Nov 19 '05 #3
And if I do not have internet connection in my intranet where the
application is running? How would I reach
"http://schemas.microso ft.com/cdo/configuration/" ?

WHAT CAN I DO IN THIS SITUATION????

--
MSG Servicos de Informatica
Rio de Janeiro / Brazil
"Steven Cheng[MSFT]" wrote:
Thanks for Lucas's inputs,

Hi Friend,

For the "http://schemas.microso ft.com/cdo/configuration/ " , it's not a
normal URL, it's a configuration URI(maybe we should say it's a key for
configuring certain setting of the CDO object):

#http://schemas.microsoft.com/cdo/configuration/ Namespace
http://msdn.microsoft.com/library/en..._configuration.
asp?frame=true

In fact, the System.Web.Mail components in .net framework is using the CDO
object underlying. And the
http://schemas.microsoft.com/cdo/configuration/ contains a collection of
schema URIs( keys) to identify a set of settings of the CDO component , we
can configure them thorugh these URIs at runtime.

BTW, here is a FAQ site of System.Web.Mail which contains may common
question on the web mail components:

http://www.systemwebmail.com/

Hope also helps. Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
--------------------
| Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
| Subject: Re: MailMessage question
| From: Lucas Tam <RE********@rog ers.com>
| References: <B1************ *************** *******@microso ft.com>
| Organization: None of Your Business!!!
| Message-ID: <Xn************ *************** @127.0.0.1>
| User-Agent: Xnews/??.01.30
| X-Face:
#gFwhH/LPM9"eq<Dzb3~[P'7%dS98vHkcFbX ;SjezglosS.OP?: tzhHT7o=G03o0%S t#;xTbMCCP
'rF/EnVDK-y*a(Qh3J)+Fn]"/&@D(dOG=ITH!\af BA$O}D";gSvoEpf d
| Reply-To: RE********@roge rs.com
| Lines: 25
| X-Complaints-To: ab***@easynews. com
| X-Complaints-Info: Please be sure to forward a copy of ALL headers
otherwise we will be unable to process your complaint properly.
| Date: Thu, 11 Aug 2005 15:11:22 GMT
| Path:
TK2MSFTNGXA01.p hx.gbl!TK2MSFTF EED02.phx.gbl!t ornado.fastwebn et.it!tiscali!n e
wsfeed1.ip.tisc ali.net!news.gl orb.com!newsfee d2.easynews.com !easynews.com!e a
synews!easynews-local!fe04.news .easynews.com.P OSTED!not-for-mail
| Xref: TK2MSFTNGXA01.p hx.gbl
microsoft.publi c.dotnet.framew ork.aspnet:1174 18
| X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet
|
| =?Utf-8?B?TVNHIFNlcnZ pY29zIGRlIEluZm 9ybWF0aWNh?=
| <me*****@newsgr oup.nospam> wrote in
| news:B1******** *************** ***********@mic rosoft.com:
|
| > I'd like to know why when I use the "MailMessag e" Class with
| > "SMTPServer "
| > class to authenticate in my SMTP Server I have to send an URL as
| > "http://schemas.microso ft.com/cdo/configuration/"; to authenticate. Is
| > it the unique mode to send emails in my situation? What's the other
| > mode to send emails without pass by Microsoft's URL?
|
| You'll need to be using .NET 1.1 to use these fields.
|
| With the System.Web.Mail classes, you'll have to pass in these fields,
| since authentication is not supported out of the box.
|
| You might want to take a look at the field:
| http://schemas.microsoft.com/cdo/con...tion/sendusing
|
| 0 is basic. 1 is NTML. 2 is SMTP authentication.
|
| --
| Lucas Tam (RE********@rog ers.com)
| Please delete "REMOVE" from the e-mail address when replying.
| http://members.ebay.com/aboutme/coolspot18/
|

Nov 19 '05 #4
=?Utf-8?B?TVNHIFNlcnZ pY29zIGRlIEluZm 9ybWF0aWNh?= <me*****@newsgr oup.nospam>
wrote in news:0C******** *************** ***********@mic rosoft.com:
And if I do not have internet connection in my intranet where the
application is running? How would I reach
"http://schemas.microso ft.com/cdo/configuration/" ?


It's an (xml) schema... not an actual URL.

--
Lucas Tam (RE********@rog ers.com)
Please delete "REMOVE" from the e-mail address when replying.
http://members.ebay.com/aboutme/coolspot18/
Nov 19 '05 #5
Yes, "http://schemas.microso ft.com/cdo/configuration/" is just a URI (not
necessarily a valid URL on the internet). It is just the same as other keys
such as:

"urn:micros oft-com:mail", "key_microsoft_ mail" .....

Using such schema keys dosn't require the box be connected to the internet,
these buildin schema key will be recognized by the certain processing
application. For example, for the

"http://schemas.microso ft.com/cdo/configuration/"

it'll be recoginzed by the CDO components no matter the components is
running on a isolated box or connected to internet.

Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
--------------------
| Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
| Subject: Re: MailMessage question
| From: Lucas Tam <RE********@rog ers.com>
| References: <B1************ *************** *******@microso ft.com>
<Xn************ *************** @127.0.0.1>
<D$************ **@TK2MSFTNGXA0 1.phx.gbl>
<0C************ *************** *******@microso ft.com>
| Organization: None of Your Business!!!
| Message-ID: <Xn************ *************** @127.0.0.1>
| User-Agent: Xnews/??.01.30
| X-Face:
#gFwhH/LPM9"eq<Dzb3~[P'7%dS98vHkcFbX ;SjezglosS.OP?: tzhHT7o=G03o0%S t#;xTbMCCP
'rF/EnVDK-y*a(Qh3J)+Fn]"/&@D(dOG=ITH!\af BA$O}D";gSvoEpf d
| Reply-To: RE********@roge rs.com
| Lines: 13
| X-Complaints-To: ab***@easynews. com
| X-Complaints-Info: Please be sure to forward a copy of ALL headers
otherwise we will be unable to process your complaint properly.
| Date: Tue, 16 Aug 2005 01:06:16 GMT
| Path:
TK2MSFTNGXA01.p hx.gbl!TK2MSFTN GP08.phx.gbl!ne wsfeed00.sul.t-online.de!t-onli
ne.de!newshub.s dsu.edu!newsfee d.news2me.com!n ewsfeed2.easyne ws.com!easynews .
com!easynews!ea synews-local!fe02.news .easynews.com.P OSTED!not-for-mail
| Xref: TK2MSFTNGXA01.p hx.gbl
microsoft.publi c.dotnet.framew ork.aspnet:1181 41
| X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet
|
| =?Utf-8?B?TVNHIFNlcnZ pY29zIGRlIEluZm 9ybWF0aWNh?=
<me*****@newsgr oup.nospam>
| wrote in news:0C******** *************** ***********@mic rosoft.com:
|
| > And if I do not have internet connection in my intranet where the
| > application is running? How would I reach
| > "http://schemas.microso ft.com/cdo/configuration/" ?
|
| It's an (xml) schema... not an actual URL.
|
| --
| Lucas Tam (RE********@rog ers.com)
| Please delete "REMOVE" from the e-mail address when replying.
| http://members.ebay.com/aboutme/coolspot18/
|

Nov 19 '05 #6
Thanks for the answer. This solve my question.
--
MSG Servicos de Informatica
Rio de Janeiro / Brazil
"Steven Cheng[MSFT]" wrote:
Yes, "http://schemas.microso ft.com/cdo/configuration/" is just a URI (not
necessarily a valid URL on the internet). It is just the same as other keys
such as:

"urn:micros oft-com:mail", "key_microsoft_ mail" .....

Using such schema keys dosn't require the box be connected to the internet,
these buildin schema key will be recognized by the certain processing
application. For example, for the

"http://schemas.microso ft.com/cdo/configuration/"

it'll be recoginzed by the CDO components no matter the components is
running on a isolated box or connected to internet.

Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
--------------------
| Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
| Subject: Re: MailMessage question
| From: Lucas Tam <RE********@rog ers.com>
| References: <B1************ *************** *******@microso ft.com>
<Xn************ *************** @127.0.0.1>
<D$************ **@TK2MSFTNGXA0 1.phx.gbl>
<0C************ *************** *******@microso ft.com>
| Organization: None of Your Business!!!
| Message-ID: <Xn************ *************** @127.0.0.1>
| User-Agent: Xnews/??.01.30
| X-Face:
#gFwhH/LPM9"eq<Dzb3~[P'7%dS98vHkcFbX ;SjezglosS.OP?: tzhHT7o=G03o0%S t#;xTbMCCP
'rF/EnVDK-y*a(Qh3J)+Fn]"/&@D(dOG=ITH!\af BA$O}D";gSvoEpf d
| Reply-To: RE********@roge rs.com
| Lines: 13
| X-Complaints-To: ab***@easynews. com
| X-Complaints-Info: Please be sure to forward a copy of ALL headers
otherwise we will be unable to process your complaint properly.
| Date: Tue, 16 Aug 2005 01:06:16 GMT
| Path:
TK2MSFTNGXA01.p hx.gbl!TK2MSFTN GP08.phx.gbl!ne wsfeed00.sul.t-online.de!t-onli
ne.de!newshub.s dsu.edu!newsfee d.news2me.com!n ewsfeed2.easyne ws.com!easynews .
com!easynews!ea synews-local!fe02.news .easynews.com.P OSTED!not-for-mail
| Xref: TK2MSFTNGXA01.p hx.gbl
microsoft.publi c.dotnet.framew ork.aspnet:1181 41
| X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet
|
| =?Utf-8?B?TVNHIFNlcnZ pY29zIGRlIEluZm 9ybWF0aWNh?=
<me*****@newsgr oup.nospam>
| wrote in news:0C******** *************** ***********@mic rosoft.com:
|
| > And if I do not have internet connection in my intranet where the
| > application is running? How would I reach
| > "http://schemas.microso ft.com/cdo/configuration/" ?
|
| It's an (xml) schema... not an actual URL.
|
| --
| Lucas Tam (RE********@rog ers.com)
| Please delete "REMOVE" from the e-mail address when replying.
| http://members.ebay.com/aboutme/coolspot18/
|

Nov 19 '05 #7
You're welcome :-)

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
--------------------
| Thread-Topic: MailMessage question
| thread-index: AcWjMpWs1bh8rNt USlmk+cOvinTrPA ==
| X-WBNR-Posting-Host: 200.142.104.78
| From: =?Utf-8?B?TVNHIFNlcnZ pY29zIGRlIEluZm 9ybWF0aWNh?=
<me*****@newsgr oup.nospam>
| References: <B1************ *************** *******@microso ft.com>
<Xn************ *************** @127.0.0.1>
<D$************ **@TK2MSFTNGXA0 1.phx.gbl>
<0C************ *************** *******@microso ft.com>
<Xn************ *************** @127.0.0.1>
<z7************ **@TK2MSFTNGXA0 1.phx.gbl>
| Subject: Re: MailMessage question
| Date: Wed, 17 Aug 2005 06:50:10 -0700
| Lines: 80
| Message-ID: <F8************ *************** *******@microso ft.com>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="Utf-8"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| Content-Class: urn:content-classes:message
| Importance: normal
| Priority: normal
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
| Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
| NNTP-Posting-Host: TK2MSFTNGXA03.p hx.gbl 10.40.2.250
| Path: TK2MSFTNGXA01.p hx.gbl!TK2MSFTN GP08.phx.gbl!TK 2MSFTNGXA03.phx .gbl
| Xref: TK2MSFTNGXA01.p hx.gbl
microsoft.publi c.dotnet.framew ork.aspnet:1185 72
| X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet
|
| Thanks for the answer. This solve my question.
|
|
| --
| MSG Servicos de Informatica
| Rio de Janeiro / Brazil
|
|
| "Steven Cheng[MSFT]" wrote:
|
| > Yes, "http://schemas.microso ft.com/cdo/configuration/" is just a URI
(not
| > necessarily a valid URL on the internet). It is just the same as other
keys
| > such as:
| >
| > "urn:micros oft-com:mail", "key_microsoft_ mail" .....
| >
| > Using such schema keys dosn't require the box be connected to the
internet,
| > these buildin schema key will be recognized by the certain processing
| > application. For example, for the
| >
| > "http://schemas.microso ft.com/cdo/configuration/"
| >
| > it'll be recoginzed by the CDO components no matter the components is
| > running on a isolated box or connected to internet.
| >
| > Thanks,
| >
| > Steven Cheng
| > Microsoft Online Support
| >
| > Get Secure! www.microsoft.com/security
| > (This posting is provided "AS IS", with no warranties, and confers no
| > rights.)
| >
| >
| > --------------------
| > | Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
| > | Subject: Re: MailMessage question
| > | From: Lucas Tam <RE********@rog ers.com>
| > | References: <B1************ *************** *******@microso ft.com>
| > <Xn************ *************** @127.0.0.1>
| > <D$************ **@TK2MSFTNGXA0 1.phx.gbl>
| > <0C************ *************** *******@microso ft.com>
| > | Organization: None of Your Business!!!
| > | Message-ID: <Xn************ *************** @127.0.0.1>
| > | User-Agent: Xnews/??.01.30
| > | X-Face:
| >
#gFwhH/LPM9"eq<Dzb3~[P'7%dS98vHkcFbX ;SjezglosS.OP?: tzhHT7o=G03o0%S t#;xTbMCCP
| > 'rF/EnVDK-y*a(Qh3J)+Fn]"/&@D(dOG=ITH!\af BA$O}D";gSvoEpf d
| > | Reply-To: RE********@roge rs.com
| > | Lines: 13
| > | X-Complaints-To: ab***@easynews. com
| > | X-Complaints-Info: Please be sure to forward a copy of ALL headers
| > otherwise we will be unable to process your complaint properly.
| > | Date: Tue, 16 Aug 2005 01:06:16 GMT
| > | Path:
| >
TK2MSFTNGXA01.p hx.gbl!TK2MSFTN GP08.phx.gbl!ne wsfeed00.sul.t-online.de!t-onli
| >
ne.de!newshub.s dsu.edu!newsfee d.news2me.com!n ewsfeed2.easyne ws.com!easynews .
| > com!easynews!ea synews-local!fe02.news .easynews.com.P OSTED!not-for-mail
| > | Xref: TK2MSFTNGXA01.p hx.gbl
| > microsoft.publi c.dotnet.framew ork.aspnet:1181 41
| > | X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet
| > |
| > | =?Utf-8?B?TVNHIFNlcnZ pY29zIGRlIEluZm 9ybWF0aWNh?=
| > <me*****@newsgr oup.nospam>
| > | wrote in news:0C******** *************** ***********@mic rosoft.com:
| > |
| > | > And if I do not have internet connection in my intranet where the
| > | > application is running? How would I reach
| > | > "http://schemas.microso ft.com/cdo/configuration/" ?
| > |
| > | It's an (xml) schema... not an actual URL.
| > |
| > | --
| > | Lucas Tam (RE********@rog ers.com)
| > | Please delete "REMOVE" from the e-mail address when replying.
| > | http://members.ebay.com/aboutme/coolspot18/
| > |
| >
| >
|

Nov 19 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
7768
by: Mark Rae | last post by:
Hi, Can anyone please tell me if it's possible to pass a System.Web.Mail.MailMessage object to a ASP.NET Web Service? Maybe using XML Serialization / Deserialization? I've been asked to investigate the possibility of building a front-end web page which captures MailMessage properties such To, From Subject, Attachments etc, builds a MailMessage object, passes the MailMessage object to a web service, the web service then sends the message...
5
2230
by: martin | last post by:
Hi, I have created a class that is totally seperate from my web application. However this class is used extensivly by the web application for stuff like data access. I wish to add a function to this class that will send email, however my class will not seem to recognise the system.web.mail.mailmessage. my first impression on this is that I may have to use some sort of third
1
1816
by: Wade Wegner | last post by:
Hello, Using the MailMessage class (or any other ASP.NET SMTP classes), I would like to programmatically request a read receipt. Is this possible? I have found an article that talked about a ReadReceipt property for CDO 1.2.1, but I have not been able to find a ASP.NET or MailMessage article that specifically deals with this issue. Additionally, it appears that utilizing an Outlook object this is also possible, but this system will...
4
7539
by: Aren Cambre | last post by:
Why does SmtpMail.Send throw an exception if the MailMessage's BodyFormat = MailFormat.Html? I've searched all over the place and cannot find a solution anywhere. I am running this on Windows XP SP2, and IIS's SMTP and WWW servers are installed. Here is the error trace: System.Web.HttpException: Could not access 'CDO.Message' object. ---> System.Reflection.TargetInvocationException: Exception has been thrown by the target of an...
6
2188
by: Jul | last post by:
Hi, I use MailMessage class for create email. I specify such settings: mmEmail = New MailMessage mmEmail.To = ".." mmEmail.Body = "..." mmEmail.Subject = "..." mmEmail.BodyFormat = MailFormat.Text
4
1821
by: Ant | last post by:
Hi, I'm using the MailMessage object to send an email programmatically via a console application. It needs to have lines breaks. For example: string s = "This is the first line + "\n\r" + "and this is the second line."; This works fine when written to the console however the MailMessage object ignores the \ escape key and returns a single lined string. How can I use carriage returns in a MailMessage?
1
6816
by: asnowfall | last post by:
I am creating MailMessage out of already existing email message. My existing message has few custom properties. I wan to add them to System.Net.Mail.MailMessage How to add custom properties? I was thinking adding custom properties to System.Net.Mail.MailMessage.Headers. but it's a READONLY property. System.Net.Mail.MailMessage has few header fields as properties (eg: FROM, TO, CC) and these are not sufficient.
1
4665
by: Michel Couche | last post by:
Hello, I am starting the development of a newsletter The use of the class MailMessage of System.Net.Mail is quite straightforward for usual contact forms but my question here is "How can I reference a CSS file in the header of my newsletter message ?" Here is where I am .... (1) I found a way to reference a web page in the body of the message (ref: http://www.systemwebmail.com/faq/3.2.aspx) Dim mail As New MailMessage()
2
8794
by: =?Utf-8?B?Q2FwdGFpbiBEYXZlIQ==?= | last post by:
I wrote some code to send an email with two alternate views: 1) html 2) plain text All the html enabled email clients accept the html just fine and disregard the plain text version. However, the plain-text-only email clients I've tried keep reading my plain text email and formatting it in all kinds of crazy ways.
0
7997
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
7929
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8409
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8065
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8280
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6739
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
5882
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5441
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
3907
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.