Send from your App Part 1

Size: px
Start display at page:

Download "Send email from your App Part 1"

Transcription

1 Send from your App Part 1 This is a short and simple tutorial that will demonstrate how to develop an app that sends an from within the app. Step 1: Create a Single View Application and name it SendMail as follows: (Note: You can use the Story board if you want but this is just a single view application.) Step 2: The first thing we will have to do is add the MessageUI.framework to our project. Right click on the main project folder at the top of the Project Explorer window. Click on the Build Phases tab on the top and open up the Link Binary With Libraries category.

2 Click on the very little + (plus symbol) at the bottom of the category window. Find the MessageUi.framework and click add.

3 The finished list looks like this: Step 4: Create the User Interface to look like this. Basically add 3 Text Fields and 1 Button so it looks something like this: Step 4: Open ViewController.h. First we need to import the MessageUI class by adding the header to the top of ViewController.h as follows: #import <MessageUI/MessageUI.h> We also need to add the <MFMailComposeViewControllerDelegate> protocol, like this:

4 @interface ViewController : UIViewController <MFMailComposeViewControllerDelegate> Now we need to wire the button and the three Text Fields as (weak, nonatomic) IBOutlet UITextField (weak, nonatomic) IBOutlet UITextField (weak, nonatomic) IBOutlet UITextField *message; - (IBAction)send:(UIButton *)sender; We can now add a method to get rid of the keyboard when the user is done typing into each of the Text Fields. Wire one of the Text Field s, Did End on Exit to an IBOutlet called finished. The following method looks like this: - (IBAction)finished:(UITextField *)sender; Wire the other two Did End on Exit events to this method as well so all three Text Fields will work with this one method. After doing this you can save and close this file. Step 5: Open ViewController.m Add the line to synthesize the properties as to, subject, message; Step 6: Implement the reignfirstresponder for the text fields. Add the code to the finished method to clean up our UI after the user is done typing into the text fields. This doesn t have anything to do with ing it s just used to close the keyboard after a user enters text into a Text Field. - (IBAction)finished:(UITextField *)sender [sender resignfirstresponder]; Step 7: Add the send method implementation.

5 All the work is done by the MFMailComposeViewController. First we check to see if the phone can send mail. If it can we create an instance of the MFMailComposeViewController and use it to set the subject, the body and the recipients of the . settorecipients takes an array as an argument so we need to put our to text into an array. After setting up the we present the view the present ModalViewController. The finished method looks like this: - (IBAction)send:(UIButton *)sender NSLog(@"Inside send method"); if ([MFMailComposeViewController cansendmail]) // set the send To address NSMutableArray *recipients = [[NSMutableArray alloc] initwithcapacity:1]; [recipients addobject:to.text]; MFMailComposeViewController *controller = [[MFMailComposeViewController alloc] init]; controller.mailcomposedelegate = self; [controller setsubject:subject.text]; [controller setmessagebody:message.text ishtml:no]; [controller settorecipients:recipients]; [self presentmodalviewcontroller:controller animated:yes]; else UIAlertView *alert = [[UIAlertView alloc] initwithtitle:@"alert" message:@"your device is not set up for ." delegate:self cancelbuttontitle:@"ok" otherbuttontitles: nil]; [alert show];

6 Step 8: In order to get rid of the view after sending we need to implement the mailcomposecontroller:didfinishwithresult:error method. In this method we can handle if the user selected to cancel sending the and decided to delete or save it. We won t do anything but send an alert in the event that the failed after the user tried to send it. Add the following method to ViewController.m: - (void)mailcomposecontroller:(mfmailcomposeviewcontroller*)contr oller didfinishwithresult:(mfmailcomposeresult)result error:(nserror*)error switch (result) case MFMailComposeResultCancelled: case MFMailComposeResultSaved: case MFMailComposeResultSent: case MFMailComposeResultFailed: default: UIAlertView *alert = [[UIAlertView alloc] initwithtitle:@" " message:@" Failed" delegate:self cancelbuttontitle:@"ok" otherbuttontitles: nil]; [alert show];

7 [self becomefirstresponder]; [self dismissmodalviewcontrolleranimated:yes]; Step 9: Build and Run and check it out. Of course the simulator isn t going to be able to send a real . You ll have to run it on a phone to do that. You should see the following results: When you press the Send button you will see: After you press Send you will be returned back to your app.

2. Create the User Interface: Open ViewController.xib or MainStoryBoard.storyboard by double clicking it.

2. Create the User Interface: Open ViewController.xib or MainStoryBoard.storyboard by double clicking it. A Tic-Tac-Toe Example Application 1. Create a new Xcode Single View Application project. Call it something like TicTacToe or another title of your choice. Use the Storyboard support and enable Automatic

More information

INTRODUCTION TO IOS CSCI 4448/5448: OBJECT-ORIENTED ANALYSIS & DESIGN LECTURE 13 02/22/2011

INTRODUCTION TO IOS CSCI 4448/5448: OBJECT-ORIENTED ANALYSIS & DESIGN LECTURE 13 02/22/2011 INTRODUCTION TO IOS CSCI 4448/5448: OBJECT-ORIENTED ANALYSIS & DESIGN LECTURE 13 02/22/2011 1 Goals of the Lecture Present an introduction to ios Program Coverage of the language will be INCOMPLETE We

More information

ITP 342 Mobile App Dev. Alerts

ITP 342 Mobile App Dev. Alerts ITP 342 Mobile App Dev Alerts Alerts UIAlertController replaces both UIAlertView and UIActionSheet, thereby unifying the concept of alerts across the system, whether presented modally or in a popover.

More information

Yahoo E-Mail Terminology

Yahoo E-Mail Terminology ka 412.835.2207 www.bethelparklibrary.org Yahoo E-Mail Terminology Yahoo Yahoo is the name of the website that your account will be set up in. To get to your e-mail, you will always need to start at the

More information

Managing Contacts in Outlook

Managing Contacts in Outlook Managing Contacts in Outlook This document provides instructions for creating contacts and distribution lists in Microsoft Outlook 2007. In addition, instructions for using contacts in a Microsoft Word

More information

Law School Computing Services User Memo

Law School Computing Services User Memo Law School Computing Services User Memo Using Rules in the Outlook Desktop Client Manage email messages by using rules A rule is an action that Microsoft Outlook 2013 runs automatically on incoming or

More information

Automatic Integration into Olympus Transcription Via FTP

Automatic Integration into Olympus Transcription Via FTP Automatic Integration into Olympus Transcription Via FTP The following Guide demonstrates how to enable integration from the Hugo Dictation App via FTP into the Olympus Transcription Software The creation

More information

Amy wants to use her email to view some photos her friend Sandy sent, from her vacation to Washington DC.

Amy wants to use her email to view some photos her friend Sandy sent, from her vacation to Washington DC. E-mail Attachments Hi, I m Sarah. I m going to show you how to download files people send to you in emails, and how to send your own files to other people using your email. We ll follow along with Amy,

More information

Praktikum Entwicklung von Mediensystemen mit

Praktikum Entwicklung von Mediensystemen mit Praktikum Entwicklung von Mediensystemen mit Wintersemester 2013/2014 Christian Weiß, Dr. Alexander De Luca Today Organization Introduction to ios programming Hello World Assignment 1 2 Organization 6

More information

Outlook Web App OWA Quick Guide. Getting you up to speed quickly.

Outlook Web App OWA Quick Guide. Getting you up to speed quickly. Outlook Web App OWA Quick Guide Getting you up to speed quickly. Information Services 8-1-2014 Contents Exploring the OWA (Outlook Web App) User Interface... 2 Getting Started... 2 Mail... 6 Creating and

More information

Organizing and Managing Email

Organizing and Managing Email Organizing and Managing Email Outlook provides several tools for managing email, including folders, rules, and categories. You can use these tools to help organize your email. Using folders Folders can

More information

Outlook Web App (OWA) To create a new message:

Outlook Web App (OWA) To create a new message: What you ll see in Mail 1. Create a new message by clicking New mail. 2. Folder list. The folder list includes the folders in your mailbox. It may include other folders, such as Favorites and archive folders.

More information

Shasta College SharePoint Tutorial. Create an HTML Form

Shasta College SharePoint Tutorial. Create an HTML Form Create an HTML Form SharePoint HTML forms are based on Lists. Lists are like mini-databases inside of SharePoint that define the form s fields and stores the data submitted from the form. Before you can

More information

Managing Mailbox Space and Personal Folders

Managing Mailbox Space and Personal Folders Managing Mailbox space and Using Personal Folders Based on documentation developed at the University of Iowa Revised for Iowa State University Extension August, 2005 ISU 100 EIT Bldg Iowa State University

More information

Outlook Quick Steps & Rules

Outlook Quick Steps & Rules Page 1 of 8 Page 1 of 8 Page 1 of 8 Automate common or repetitive tasks with Quick Steps and manage email messages by using Rules. QUICK STEPS Default Quick Steps in Outlook 2013: Quick Step Move to: To

More information

When you have decided what to include in your signature, you will need to open the signatures and stationery dialogue box:

When you have decided what to include in your signature, you will need to open the signatures and stationery dialogue box: Signatures An email signature is a block of information which is added to the bottom of an email to give the recipient information about the sender. It functions in a similar way to using headed paper

More information

Email Basics. For more information on the Library and programs, visit www.bcpls.org BCPLS 08/10/2010 PEMA

Email Basics. For more information on the Library and programs, visit www.bcpls.org BCPLS 08/10/2010 PEMA Email Basics Email, short for Electronic Mail, consists of messages which are sent and received using the Internet. There are many different email services available that allow you to create an email account

More information

Gmail: Sending, replying, attachments, and printing

Gmail: Sending, replying, attachments, and printing If you're using an old version of Gmail, your Inbox may look a little different. Gmail: Sending, replying, attachments, and printing Welcome to Gmail. This document will give you a quick overview of how

More information

OUTLOOK 2013 - GETTING STARTED

OUTLOOK 2013 - GETTING STARTED OUTLOOK 2013 - GETTING STARTED Information Technology September 1, 2014 1 GETTING STARTED IN OUTLOOK 2013 Backstage View Ribbon Navigation Pane View Pane Navigation Bar Reading Pane 2 Backstage View contains

More information

Microsoft Outlook 2013 - Email. Sorting, searching and filtering emails. Sorting your messages

Microsoft Outlook 2013 - Email. Sorting, searching and filtering emails. Sorting your messages Sorting, searching and filtering emails When handling emails it is often necessary to find a certain message or type of message from your mail. As your inbox fills up, it can become more difficult to pick

More information

Microsoft Outlook 2003 Quick How-to Guide

Microsoft Outlook 2003 Quick How-to Guide Microsoft Outlook 2003 Quick How-to Guide Microsoft Outlook 2003 Quick How-to-Guide This document is designed to be a quick guide for the most common tasks in Outlook. It is separated into different sections

More information

Tutorial: ios OData Application Development with REST Services. Sybase Unwired Platform 2.2 SP04

Tutorial: ios OData Application Development with REST Services. Sybase Unwired Platform 2.2 SP04 Tutorial: ios OData Application Development with REST Services Sybase Unwired Platform 2.2 SP04 DOCUMENT ID: DC01976-01-0224-01 LAST REVISED: June 2013 Copyright 2013 by Sybase, Inc. All rights reserved.

More information

Filtering Email with Microsoft Outlook

Filtering Email with Microsoft Outlook Filtering Email with Microsoft Outlook Microsoft Outlook is an email client that can retrieve and send email from various types of mail servers. It includes some advanced functionality that allows you

More information

Why should I back up my certificate? How do I create a backup copy of my certificate?

Why should I back up my certificate? How do I create a backup copy of my certificate? Why should I back up my certificate? You should always keep a backup copy of your ACES Business Certificate on a location external to your computer. Since it s stored locally on your computer, in the Windows

More information

Adding the BU IMAP Inbox 1. Along the left side of the screen, there is a Mail column. Look for the All Mail Folders section.

Adding the BU IMAP Inbox 1. Along the left side of the screen, there is a Mail column. Look for the All Mail Folders section. Basic Guide to Setting up Outlook 2003 for E-Mail Some preliminary setup has already been done, so when you first open Outlook 2003 it will prompt you for your password. You can go ahead and log on at

More information

Advanced Outlook Tutorials

Advanced Outlook Tutorials Advanced Outlook Tutorials Filtering: Create a filter to send email directly to a specific folder from a certain sender: 1. Right click on the sender s email. 2. Choose Rules. 3. Click on Create Rule.

More information

Setting up Junk Email Filters By Louise Ryan, NW District IT Expert

Setting up Junk Email Filters By Louise Ryan, NW District IT Expert The email servers on campus are no longer set up to filter junk emails from your inbox. If you are getting a significant number of junk emails in your inbox you can set up your own filters in Outlook.

More information

E-mailing a large amount of recipients

E-mailing a large amount of recipients E-mailing a large amount of recipients DO NOT use the TO or CC field! If you have a large list of recipients you need to send an email you, you should never try sending one large email with all of the

More information

Life after Microsoft Outlook Google Apps

Life after Microsoft Outlook Google Apps Welcome Welcome to Gmail! Now that you ve switched from Microsoft Outlook to, here are some tips on beginning to use Gmail. Google Apps What s Different? Here are some of the differences you ll notice

More information

LinkPoint Connect for Salesforce Email Tutorial Lotus Notes Edition

LinkPoint Connect for Salesforce Email Tutorial Lotus Notes Edition LinkPoint Connect for Salesforce Email Tutorial Lotus Notes Edition Lotus Notes Overview 1. How to record an outbound Email from Lotus Notes into Salesforce. 2. How to record an inbound Email from Lotus

More information

Managing Online and Offline Archives in Outlook

Managing Online and Offline Archives in Outlook Managing Online and Offline Archives in Outlook Contents How to Enable the Online Archive Feature in Outlook... 1 For Outlook 2007:... 2 How to Set the AutoArchive Properties for a Folder in Outlook 2007:...

More information

Student Office 365 Outlook Web App OWA Quick Guide. Getting you up to speed quickly.

Student Office 365 Outlook Web App OWA Quick Guide. Getting you up to speed quickly. Student Office 365 Outlook Web App OWA Quick Guide Getting you up to speed quickly. Information Services 9-5-2014 Contents Logging into the CWU Student Outlook Web App... 3 Getting Started with Office

More information

Quick Guide on How to Clean up your Mailbox

Quick Guide on How to Clean up your Mailbox Quick Guide on How to Clean up your Mailbox Quick Guide Check your Mailbox size Empty the Deleted Items and Junk E-Mail folders Delete unnecessary Sent Items Search for your largest messages Save and remove

More information

How To Use Webmail. Guiding you through the Universities online email

How To Use Webmail. Guiding you through the Universities online email How To Use Webmail Guiding you through the Universities online email Table of Contents LOGGING ON...2 VIEWING MESSAGES...2 SENDING A MESSAGE...3 Using the University s Address Book...3 To send a message

More information

- Training. Getting Started with Outlook 2003. Information Technology Services - Training The University of Texas at Austin

- Training. Getting Started with Outlook 2003. Information Technology Services - Training The University of Texas at Austin - Training Getting Started with Outlook 2003 Information Technology Services - Training The University of Texas at Austin http://www.utexas.edu/its/training 2007 Information Technology Services The University

More information

ios Development Tutorial Nikhil Yadav CSE 40816/60816: Pervasive Health 09/09/2011

ios Development Tutorial Nikhil Yadav CSE 40816/60816: Pervasive Health 09/09/2011 ios Development Tutorial Nikhil Yadav CSE 40816/60816: Pervasive Health 09/09/2011 Healthcare iphone apps Various apps for the iphone available Diagnostic, Diet and Nutrition, Fitness, Emotional Well-being

More information

Creating Rules in Outlook

Creating Rules in Outlook Technology Help Desk 412 624-HELP [4357] http://technology.pitt.edu Creating Rules in Outlook Overview Microsoft Outlook provides a way for users to manage and organize their email using rules. A rule

More information

Section 9. Topics Covered. Using the Out of Office Assistant... 9-2 Working offline... 9-10. Time Required: 30 Mins

Section 9. Topics Covered. Using the Out of Office Assistant... 9-2 Working offline... 9-10. Time Required: 30 Mins Section 9 Topics Covered Using the Out of Office Assistant... 9-2 Working offline... 9-10 Time Required: 30 Mins 9-1 Using the Out of Office Assistant The Out of Office Assistant can be used to handle

More information

Xcode Application note

Xcode Application note 1 Xcode Application note - how to export file from an ios application Feifei Li ECE480 Design Team 10 2 Table of Contents Introduction... 3 Get Started... 3 Familiar with Xcode... 6 Create user interface...

More information

Tech Tip: 2 Methods to Back-up GroupWise E-mail

Tech Tip: 2 Methods to Back-up GroupWise E-mail Tech Tip: 2 Methods to Back-up GroupWise E-mail Contents 1) Method 1: Save Messages as Text or RTF 2) Method 2: Forward messages to another e-mail account (home account) 3) Pros and Cons of Methods 1-2

More information

16.4.3 Lab: Data Backup and Recovery in Windows XP

16.4.3 Lab: Data Backup and Recovery in Windows XP 16.4.3 Lab: Data Backup and Recovery in Windows XP Introduction Print and complete this lab. In this lab, you will back up data. You will also perform a recovery of the data. Recommended Equipment The

More information

An Introduction to Modern Software Development Tools Creating A Simple GUI-Based Tool Appleʼs XCode Version 3.2.6

An Introduction to Modern Software Development Tools Creating A Simple GUI-Based Tool Appleʼs XCode Version 3.2.6 1 2 3 4 An Introduction to Modern Software Development Tools Creating A Simple GUI-Based Tool Appleʼs XCode Version 3.2.6 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 Charles J. Ammon / Penn State August, 2011

More information

Communications Express E-mail Filters

Communications Express E-mail Filters Communications Express E-mail Filters Last modified on 10/05/2006 NOTE ON SPAM: Our spam filtering system (PureMessage) rates the likeliness of messages from off campus being spam. For those messages with

More information

emarketing Manual- Creating a New Email

emarketing Manual- Creating a New Email emarketing Manual- Creating a New Email Create a new email: You can create a new email by clicking the button labeled Create New Email located at the top of the main page. Once you click this button, a

More information

Knowledge Base. Google Apps Email User Manual. 24 Pages. Zeumic Pty Ltd. PO Box 44 Kew, VIC Australia 3101

Knowledge Base. Google Apps Email User Manual. 24 Pages. Zeumic Pty Ltd. PO Box 44 Kew, VIC Australia 3101 Knowledge Base Google Apps Email User Manual Pages Zeumic Pty Ltd PO Box 44 Kew, VIC Australia 3101 ABN: 62 116 073 459 Email: boom@zeumic.com.au Ph: 03 9018 1615 Web: http://www.zeumic.com.au 0. Open

More information

How to Use Windows Firewall With User Account Control (UAC)

How to Use Windows Firewall With User Account Control (UAC) Keeping Windows 8.1 safe and secure 14 IN THIS CHAPTER, YOU WILL LEARN HOW TO Work with the User Account Control. Use Windows Firewall. Use Windows Defender. Enhance the security of your passwords. Security

More information

How to use the VCCS Student E-mail System

How to use the VCCS Student E-mail System Page 1 of 7 How to use the VCCS Student E-mail System How to Access your Email 1. Log onto Blackboard. 2. Click on the Student Connect tab. 3. Click on the View My E-Mail link. 4. Your login name is your

More information

Importing Contacts to Outlook

Importing Contacts to Outlook Importing Contacts to Outlook 1. The first step is to create a file of your contacts from the National Chapter Database. 2. You create this file under Reporting, Multiple. You will follow steps 1 and 2

More information

Once you ve signed up, all you ll have to do is sign in. To sign in key in your e-mail address and password.

Once you ve signed up, all you ll have to do is sign in. To sign in key in your e-mail address and password. (1) www.marketwatch.com (2) Sign up for free membership. Pick one option. A. Click Free membership link. B. Click My Portfolios tab. C. Left column, at the bottom, click Join now! A B C Once you ve signed

More information

Saving GroupWise Email as Text Files

Saving GroupWise Email as Text Files We will be moving away from GroupWise email during the Summer of 2010. If you have emails that you need to save, you need to begin the process of saving or printing those emails now so that you will be

More information

10/28/2013. Partners Zixmail Web Portal. Provider Training. Let s Get Started!

10/28/2013. Partners Zixmail Web Portal. Provider Training. Let s Get Started! Partners Zixmail Web Portal Provider Training Let s Get Started! 1 Setting Up Your Partners Zixmail Web Portal There are two methods to begin this process. Option #1 Use the link on the Partners Provider

More information

Windows Live Mail Setup Guide

Windows Live Mail Setup Guide Versions Addressed: Windows Live Mail 2011 Document Updated: 11/24/2010 Copyright 2010 Purpose: This document will assist the end user in configuring Windows Live Mail to access a POP3 email account hosted

More information

Microsoft Office 365 includes the entire Office Suite (Word, Excel, PowerPoint, Access, Publisher, Lync, Outlook, etc ) and an OneDrive account.

Microsoft Office 365 includes the entire Office Suite (Word, Excel, PowerPoint, Access, Publisher, Lync, Outlook, etc ) and an OneDrive account. Microsoft Office 365 Contents What is Office 365?... 2 What is OneDrive?... 2 What if you already have a Microsoft Account?... 2 Download Office for FREE... 3 How to Access OneDrive... 4 Office Online...

More information

http://office.microsoft.com/client/15/help/preview?assetid=ha103466460&lcid=1033&n...

http://office.microsoft.com/client/15/help/preview?assetid=ha103466460&lcid=1033&n... Page 1 of 5 Lync Web Scheduler Microsoft Lync Web Scheduler is a web-based program that you can use to create Lync Meetings if you don t have Microsoft Outlook, or are on an operating system not based

More information

Division of Student Affairs Email Quota Practices / Guidelines

Division of Student Affairs Email Quota Practices / Guidelines Division of Student Affairs Email Quota Practices / Guidelines Table of Contents Quota Rules:... 1 Mailbox Organization:... 2 Mailbox Folders... 2 Mailbox Rules... 2 Mailbox Size Monitoring:... 3 Using

More information

Microsoft Outlook Quick Reference Sheet

Microsoft Outlook Quick Reference Sheet Microsoft Outlook is an incredibly powerful e-mail and personal information management application. Its features and capabilities are extensive. Refer to this handout whenever you require quick reminders

More information

How To Use Exhange On Outlook 2007 2007 On A Pc Or Macintosh Outlook 2007 On Your Pc Or Ipad (For Windows Xp) On Your Ipad Or Ipa (For Your Windows Xp). (For A Macintosh) On A

How To Use Exhange On Outlook 2007 2007 On A Pc Or Macintosh Outlook 2007 On Your Pc Or Ipad (For Windows Xp) On Your Ipad Or Ipa (For Your Windows Xp). (For A Macintosh) On A Configure Microsoft Outlook 2007 to use Exchange Email Setting Important 1. Before configure your Microsoft outlook 2007 to use exhange you MUST log into the Web Exchange page to login and change your

More information

Microsoft Office 365 Outlook Web App (OWA)

Microsoft Office 365 Outlook Web App (OWA) CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Office 365 Outlook Web App (OWA) Spring 2013, Version 1.0 Table of Contents Introduction...3 Signing In...3 Navigation

More information

Tech-KNOW Topic. for Microsoft Office 2000. Outlook - "You've Got Mail!"

Tech-KNOW Topic. for Microsoft Office 2000. Outlook - You've Got Mail! Tech-KNOW Topic for Microsoft Office 2000 Outlook - "You've Got Mail!" Christina School District Network Users: Log in and save today s work in your My Documents folder. Objectives: Participants will be

More information

1. Open Thunderbird. If the Import Wizard window opens, select Don t import anything and click Next and go to step 3.

1. Open Thunderbird. If the Import Wizard window opens, select Don t import anything and click Next and go to step 3. Thunderbird The changes that need to be made in the email programs will be the following: Incoming mail server: newmail.one-eleven.net Outgoing mail server (SMTP): newmail.one-eleven.net You will also

More information

10.3.1.6 Lab - Data Backup and Recovery in Windows XP

10.3.1.6 Lab - Data Backup and Recovery in Windows XP 5.0 10.3.1.6 Lab - Data Backup and Recovery in Windows XP Introduction Print and complete this lab. In this lab, you will back up data. You will also perform a recovery of the data. Recommended Equipment

More information

Microsoft Outlook 2010 Hints & Tips

Microsoft Outlook 2010 Hints & Tips IT Services Microsoft Outlook 2010 Hints & Tips Contents Introduction... 1 What Outlook Starts Up In... 1 Sending Email Hints... 2 Tracking a Message... 2 Saving a Sent Item... 3 Delay Delivery of a Single

More information

IT Quick Reference Guides Sharing, Delegation and Multiple Accounts

IT Quick Reference Guides Sharing, Delegation and Multiple Accounts IT Quick Reference Guides Sharing, Delegation and Multiple Accounts Outlook 2010 Guides This guide is meant as a mini-manual for using shared accounts, mailboxes and calendars in Outlook 2010. This is

More information

Life after Lotus Notes

Life after Lotus Notes Welcome Google Apps Welcome to Gmail! Now that you ve switched from Lotus Notes to, here are some tips on beginning to use Gmail and your other new Apps. What s Different? Here are some of the differences

More information

Word 2010: Mail Merge to Email with Attachments

Word 2010: Mail Merge to Email with Attachments Word 2010: Mail Merge to Email with Attachments Table of Contents TO SEE THE SECTION FOR MACROS, YOU MUST TURN ON THE DEVELOPER TAB:... 2 SET REFERENCE IN VISUAL BASIC:... 2 CREATE THE MACRO TO USE WITHIN

More information

How Do I Create a Sent-mail Filter for my Outlook IMAP Account?

How Do I Create a Sent-mail Filter for my Outlook IMAP Account? How Do I Create a Sent-mail Filter for my Outlook IMAP Account? This document addresses the issue with Outlook IMAP accounts where messages sent out save locally to the Sent Items folder of an Outlook

More information

A guide to sorting, deleting, archiving and moving emails in Outlook 2010

A guide to sorting, deleting, archiving and moving emails in Outlook 2010 A guide to sorting, deleting, archiving and moving emails in Outlook 2010 This guide will show you how to Archive your emails in Outlook 2010. In preparation for Archiving, the guide will also show you

More information

Configuring your email client to connect to your Exchange mailbox

Configuring your email client to connect to your Exchange mailbox Configuring your email client to connect to your Exchange mailbox Contents Use Outlook Web Access (OWA) to access your Exchange mailbox... 2 Use Outlook 2003 to connect to your Exchange mailbox... 3 Add

More information

Office365 at Triton College

Office365 at Triton College Office365 at Triton College Logging in to Office365 The new log in page for Triton email is http://outlook.com/triton.edu At that page, enter your username in this format: firstnamelastname@triton.edu

More information

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer About the Tutorial ios is a mobile operating system developed and distributed by Apple Inc. It was originally released in 2007 for the iphone, ipod Touch, and Apple TV. ios is derived from OS X, with which

More information

FC Manager Instructions

FC Manager Instructions FC Manager Instructions Overview of the dashboard window Overview This guide leads you through menus (options) available in FC Manager to help you navigate the program. Opening FC Manager 2.x After opening

More information

Sharing Files with HomeGroup

Sharing Files with HomeGroup with HomeGroup New to Windows 7? Even though there s a lot in common with the version of Windows that you had before, you might still need a hand getting up to speed. This guide is filled with useful info

More information

Why the need for set of rules in Microsoft Outlook?

Why the need for set of rules in Microsoft Outlook? Why the need for set of rules in Microsoft Outlook? Rules are used in Microsoft Outlook to organize incoming Emails. Setting up rules in Outlook automates various actions that can be taken on incoming

More information

How To Use Outlook On A Pc Or Macbook With A Pc (For A Pc) Or Macintosh (For An Ipo) With A Macbook Or Ipo With A Ipo (For Pc) With An Outlook (For Macbook

How To Use Outlook On A Pc Or Macbook With A Pc (For A Pc) Or Macintosh (For An Ipo) With A Macbook Or Ipo With A Ipo (For Pc) With An Outlook (For Macbook Outlook for Mac Getting started, reading and sending emails When you use Outlook for the first time, we suggest starting with a few minor adjustments to make the interface more familiar. From the View

More information

introduction to emarketing

introduction to emarketing introduction to emarketing emarketing is typically used for promotional campaigns for attendee generation and for attendee communication. It works closely with ereg which also includes email capabilities

More information

Praktikum Entwicklung von Mediensystemen mit ios

Praktikum Entwicklung von Mediensystemen mit ios Praktikum Entwicklung von Mediensystemen mit ios WS 2011 Prof. Dr. Michael Rohs michael.rohs@ifi.lmu.de MHCI Lab, LMU München Today Alerts, Action Sheets, text input Application architecture Table views

More information

Getting Started (direct link to Lighthouse Community http://tinyurl.com/q5dg5wp)

Getting Started (direct link to Lighthouse Community http://tinyurl.com/q5dg5wp) Getting Started (direct link to Lighthouse Community http://tinyurl.com/q5dg5wp) If you re already a member, click to login and see members only content. Use the same login ID that you use to register

More information

Microsoft Outlook Tips & Tricks

Microsoft Outlook Tips & Tricks Microsoft Outlook Tips & Tricks Columbia College Technology Services Table of Contents Creating an email signature Page 1 Handling attachments Page 1 Sending an attachment Opening an attachment Page 2

More information

Sample- for evaluation purposes only! Advanced Outlook. TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc.

Sample- for evaluation purposes only! Advanced Outlook. TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc. 2012 Advanced Outlook TeachUcomp, Inc. it s all about you Copyright: TeachUcomp, Inc. Phone: (877) 925-8080 Web: http://www.teachucomp.com

More information

Outlook Web App McKinney ISD 5/27/2011

Outlook Web App McKinney ISD 5/27/2011 Outlook Web App McKinney ISD 5/27/2011 Outlook Web App Tutorial Outlook Web Access allows you to gain access to your messages, calendars, contacts, tasks and public folders from any computer with internet

More information

Livestock Office Backup Database

Livestock Office Backup Database Livestock Office Backup Database 29/01/2015 Contents Backup Database... 2 Manual Backup... 2 System Management Backup Options... 4 Run Now... 5 Schedule Backup... 6 Tape Backup... 8 Restore Backup... 8

More information

INTRODUCTION TO OBJECTIVE-C CSCI 4448/5448: OBJECT-ORIENTED ANALYSIS & DESIGN LECTURE 12 09/29/2011

INTRODUCTION TO OBJECTIVE-C CSCI 4448/5448: OBJECT-ORIENTED ANALYSIS & DESIGN LECTURE 12 09/29/2011 INTRODUCTION TO OBJECTIVE-C CSCI 4448/5448: OBJECT-ORIENTED ANALYSIS & DESIGN LECTURE 12 09/29/2011 1 Goals of the Lecture Present an introduction to Objective-C 2.0 Coverage of the language will be INCOMPLETE

More information

Outlook XP Email Only

Outlook XP Email Only Outlook XP Email Only Table of Contents OUTLOOK XP EMAIL 5 HOW EMAIL WORKS: 5 POP AND SMTP: 5 TO SET UP THE POP AND SMTP ADDRESSES: 6 TO SET THE DELIVERY PROPERTY: 8 STARTING OUTLOOK: 10 THE OUTLOOK BAR:

More information

How to make sure you receive all emails from the University of Edinburgh

How to make sure you receive all emails from the University of Edinburgh How to make sure you receive all emails from the University of Edinburgh To ensure that any email from The University of Edinburgh - or any address you choose - is not automatically sent to your junk or

More information

Transitioning Your School Email Account

Transitioning Your School Email Account Transitioning Your School Email Account This tutorial will walk you through transferring the email and other data from your School account to a personal email account. Establish a New Email Address (or

More information

Outlook 2013 ~ e Mail Quick Tips

Outlook 2013 ~ e Mail Quick Tips The Ribbon: Home tab New Email to send a new mail New Items to send a new mail, a new appointment, a new meeting, a new contact, a new task, a new Lync Meeting Ignore to ignore a request Clean Up to clean

More information

Outlook Email. User Guide IS TRAINING CENTER. 833 Chestnut St, Suite 600. Philadelphia, PA 19107 215-503-7500

Outlook Email. User Guide IS TRAINING CENTER. 833 Chestnut St, Suite 600. Philadelphia, PA 19107 215-503-7500 Outlook Email User Guide IS TRAINING CENTER 833 Chestnut St, Suite 600 Philadelphia, PA 19107 215-503-7500 This page intentionally left blank. TABLE OF CONTENTS Getting Started... 3 Opening Outlook...

More information

Use Office 365 on your iphone or ipad

Use Office 365 on your iphone or ipad Use Office 365 on your iphone or ipad Quick Start Guide Check email Set up your iphone or ipad to send and receive mail from your Office 365 account. Check your calendar wherever you are Always know where

More information

Email Retention Information Messages automatically age out of your mailbox

Email Retention Information Messages automatically age out of your mailbox Email Retention Information Messages automatically age out of your mailbox Everything in your mailbox is subject to deletion after a certain time period (described below) with the exception of your Contacts.

More information

Microsoft Outlook 2013 Workshop

Microsoft Outlook 2013 Workshop Microsoft Outlook 2013 Workshop Course objectives: Manage correspondence and contacts efficiently Use the calendar effectively for appointments, meetings and events Customise Outlook settings View and

More information

Outlook 2010 Essentials

Outlook 2010 Essentials Outlook 2010 Essentials Training Manual SD35 Langley Page 1 TABLE OF CONTENTS Module One: Opening and Logging in to Outlook...1 Opening Outlook... 1 Understanding the Interface... 2 Using Backstage View...

More information

Outlook 2013 ~ Advanced

Outlook 2013 ~ Advanced Mail Using Categories 1. Select the message that for the category. 2. Select the appropriate category. 3. The category color displays next to the message. Renaming Categories 1. Select a message. 2. Select

More information

Barracuda Spam Firewall

Barracuda Spam Firewall Barracuda Spam Firewall Overview The Barracuda Spam Firewall is a network appliance that scans every piece of email our organization receives. Its main purposes are to reduce the amount of spam we receive

More information

Copy Documents from your Computer (H Drive) to a Flash Drive

Copy Documents from your Computer (H Drive) to a Flash Drive Copy Documents from your Computer (H Drive) to a Flash Drive Why? You are moving to another school district and want to take your files with you You are moving to another school and want to make sure you

More information

U.S. Bank Secure Mail

U.S. Bank Secure Mail U.S. Bank Secure Mail @ Table of Contents Getting Started 3 Logging into Secure Mail 5 Opening Your Messages 7 Replying to a Message 8 Composing a New Message 8 1750-All Introduction: The use of email

More information

GroupWise Training How to deal with Junk Mail

GroupWise Training How to deal with Junk Mail GroupWise Training How to deal with Junk Mail Setting Up Junk Mail Filtering This feature allows you to decide how you want to deal with junk mail and what should be categorized as junk. **Please note

More information

Exchange Account (Outlook) Mail Cleanup

Exchange Account (Outlook) Mail Cleanup Overview Exchange account users in the OET Domain each have a mailbox on the OET Microsoft Exchange Server. Exchange mailboxes have a physical size limit imposed by Microsoft which cannot be overridden

More information

Inventory Manager. Getting started Usage and general How-To

Inventory Manager. Getting started Usage and general How-To Getting started Usage and general How-To Before you begin: Prerequisites: o SQL Server 2005 Express Edition with the default SQLEXPRESS instance MUST be installed in order to use. If you do not have the

More information

AUTO ARCHIVING. December, 6 th 2005

AUTO ARCHIVING. December, 6 th 2005 AUTO ARCHIVING December, 6 th 2005 What is Auto Archiving? Archiving allows the user to keep their emails but not count them towards the set quota. By keeping emails archived, the quota will never be met

More information

E-mail Encryption Guide version 1.2, by Thomas Reed

E-mail Encryption Guide version 1.2, by Thomas Reed E-mail Encryption Guide version 1.2, by Thomas Reed In order for two people to send and receive encrypted e-mails to/from each other, both parties need: An e-mail reader that supports encryption (such

More information