Sending E-Mail. Microsoft SMTP Service Simple Mail Transport Protocol Does not support the Post Office Protocol (POP) InetPub\MailRoot\Pickup InetPub\MailRoot\Drop.

Slides:



Advertisements
Similar presentations
Kalpesh Vyas & Seward Khem
Advertisements

Computer Networks An Overview. A Computer Network!
HTTP: the hypertext transfer protocol
Exploring Microsoft Office Outlook Microsoft Outlook 2000 A Desktop Information Manager By Robert T. Grauer Maryann Barber.
CSCI 6962: Server-side Design and Programming Server Created .
POP Configuration Microsoft Outlook Express 6.x.
SEND AUTOMATED MAIL AND FROM EX Ye Olde-Timey Proceffe Automationne.
How to My Essay. How to name a document Click “file” Click “Save As” Choose where you want to save it.
. If the PHP server is an server or is aware of which server is the server, then one can write code that s information. –For example,
E – Mail History of s What is an ? What happens when we sent an ? messages Folders Address Attachments Types of.
Computer Concepts 2014 Chapter 7 The Web and .
Mail Services.
Dynamic using ColdFusion and the inFusion Mail Server Howie Hamlin On-Line Data Solutions, Inc.
Electronic Mail Originally –Memo sent from one user to another Now –Memo sent to one or more mailboxes Mailbox –Destination point for messages.
Syllabus outcomes Describes and applies problem-solving processes when creating solutions Designs, produces and evaluates appropriate solutions.
A form of communication in which electronic messages are created and transferred between two or more devices connected to a network.
 TCP/IP is the communication protocol for the Internet  TCP/IP defines how electronic devices should be connected to the Internet, and how data should.
Creating Custom Controls with User Controls. Including Standard Content with User Controls Global Super Company Global Super Company We mean business!
1 Using Messages sent from machine to machine and stored for later reading. You will use a client to read –Type mail or pine in UNIX to read.
Windows Tutorial 4 Working with the Internet and
Electronic Mail. Client Software and Mail Hosts –Client PC has client software that communicates with user’s mail host –Mail hosts deliver.
Can You Hear Me Now? Communication for Teachers Using Microsoft Outlook.
USING SYNERGY TO ANNOUNCEMENTS AND POST ASSIGNMENTS Brown Bag Lunch January 13, 2015.
Internet Protocol B Bhupendra Ratha, Lecturer School of Library and Information Science Devi Ahilya University, Indore
How to Post my Response. Click! To reply or respond to an existing topic/question, start by reading the message in the topic. Reply from within each.
Application Tracing and Error Handling. Catching Exceptions with TRY … CATCH Sub Page_Load Dim conNorthwind As SqlConnection Dim cmdSelect As SqlCommand.
Concepts  messages are passed through the internet by using a protocol called simple mail transfer protocol.  The incoming messages are.
Features Help (Adding Attachments) (Adding Auto Signatures) (Setting Priorities)
Jeff Martin, Attachments (Using Yahoo!)
HTTP :// LISTS. SUNGARDHE. COM Contact Vincent Small at Taylor University for any questions regarding this brief outline of joining.
XP New Perspectives on The Internet, Sixth Edition— Comprehensive Tutorial 2 1 Evaluating an Program and a Web-Based Service Basic Communication.
1 E- Mail. 2 Electronic Mail ( ) is simply a means of sending messages via computer Business is using more and fax To access you must.
Adding attachments to s This power point is to help people to know what an attachment is and also I will show you how to do it with screen shots to.
Uses…….. Writing,sending,receiving and saving messages. Electronic communication. Easy to operate & quick response. No data lose.
  is a system of electronic communication that allows the user to exchange messages over the internet  Everyone’s address is unique  Two.
Calendars, DateTime, Variables, and performing calculations on dates WSU – MIS171 Mauricio Featherman, Ph.D.
and the business environment Explain what is and how is it used in a business environment A02 .
Working With ASP.NET Application. Create a new virtual directory The procedure to create a new virtual directory Internet Services Manager Right click.
(Electronic Mail) a message sent and received electronically via telecommunication links between computers.
Mail merge I: Use mail merge for mass mailings How it works In any mail merge, you’ll deal with three different elements. Understanding these elements.
Protocols Monil Adhikari. Agenda Introduction Port Numbers Non Secure Protocols FTP HTTP Telnet POP3, SMTP Secure Protocols HTTPS.
HINDU STYLE PORTFOLIO TEMPLATE
Computer Network Architecture Lecture 6: OSI Model Layers Examples 1 20/12/2012.
TCP/IP Protocol Suite ©Richard L. Goldman September 25, 2002.
Take a Second Look Before You Send a Message. Do Not Default to "Reply All”
By Toby Reed.
– Protocols 21 – Protocols 21. – Protocols 21 Now we’ll move on to more technical aspects of This means protocols Remember.
By: Derek Ton & Alex Pappas.  Most frequently used internet service that you will manage as network administrator.  You need to understand how they.
Chapter 6 Electronic Mail. Copyright © 2005 Pearson Addison-Wesley. All rights reserved. Objectives To describe basic concepts and their specific.
 Introduction  Aim  Tools  Methodology  System architecture  Screenshot.
APPLICATION LAYER BY, Parthasarathy.g.
Dibyajit Computer Security Hacking dibyajit
Computing with C# and the .NET Framework
SMTP SMTP stands for Simple Mail Transfer Protocol. SMTP is used when is delivered from an client, such as Outlook Express, to an server.
Year 10 Network Security.
SMTP SMTP stands for Simple Mail Transfer Protocol. SMTP is used when is delivered from an client, such as Outlook Express, to an server.
CIW Lesson 7 Part A Name: _______________________________________
HTTP: the hypertext transfer protocol
14-мавзу. Cookie, сеанс, FTP и технологиялари
Web Services Introduction
Topic 5: Communication and the Internet
An Overview.
Simple Mail Transfer Protocol
شبكة الانترنت العالمية.
درس تطبيقي مادة التربية الفنية للصف الرابع الابتدائي
Step 1: Search “Microsoft 365” on google
Шаттық шеңбері.
Go to the page Set here the address for receiving the s sent to the mailing lists to which you are subscribing.
開始我的第一封伊妹兒 課程名稱:開始我的第一封伊妹兒 上課對象:國中一年級 上課地點:一人一機電腦教室 上課時數:一堂課(50mins)
Presentation transcript:

Sending

Microsoft SMTP Service Simple Mail Transport Protocol Does not support the Post Office Protocol (POP) InetPub\MailRoot\Pickup InetPub\MailRoot\Drop Send receive

Sending a Simple Message Sub Button_Click( s As Object, e As EventArgs ) SmtpMail.Send( _ mailfrom.Text, _ mailto.Text, _ mailsubject.Text, _ mailbody.Text ) End Sub

Sending a Simple Message SendMail.aspx Send Mail: From: <asp:TextBox ID="mailfrom" Columns="50" Runat="Server" /> To: <asp:TextBox ID="mailto" Columns="50" Runat="Server" /> Subject: <asp:TextBox ID="mailsubject" Columns="50" Runat="Server" /> Body: <asp:TextBox ID="mailbody" TextMode="Multiline" Columns="50" Rows="10" Runat="Server" /> <asp:Button Text="Send!" OnClick="Button_Click" Runat="Server" />

Adding Attachments <% Dim objMailMessage As MailMessage Dim objMailAttachment As MailAttachment ' Create the Mail Attachment objMailAttachment = New MailAttachment( "c:\BizPlan.doc" ) ' Create the Mail Message objMailMessage = New MailMessage objMailMessage.From = objMailMessage.To = objMailMessage.Subject = "Secret Business Plan" objMailMessage.Body = "Here's the plan (don't show it to anyone!)" objMailMessage.Attachments.Add( objMailAttachment ) ' Send the Mail Message SmtpMail.Send( objMailMessage ) %> BizPlan Sent!

Sending HTML <% Dim objMailMessage As MailMessage Dim strHTMLBody As String ' Create the HTML Message Body strHTMLBody = " " & _ " Thank You! " & _ " " & _ "Thank you for registering!" & _ " " ' Create the Mail Message objMailMessage = New MailMessage objMailMessage.From = objMailMessage.To = objMailMessage.Subject = "Thanks for Registering!" objMailMessage.Body = strHTMLBody objMailMessage.BodyFormat = MailFormat.HTML ' Send the Mail Message SmtpMail.Send( objMailMessage ) %> HTML Sent!