Introduction and Announcement Emails (Week 3)

Overview of Introduction & Announcement Emails

  1. Basic Purpose & Approaches
  2. Key language for Writing

Introduction Email

  • Subject

    • ❌ Meet Sam Boyle
    • ✅Meet Sam Boyle, CPA Tax Specialist
    • ✅Introducing Sam Boyle, CPA Tax Specialist
  • Body

    • state clearly who you are

    • what value you can add to the reader after you meet

      • I am skilled at...

      • These skills will be good for...

      • I am especially skilled at communication and time management.

      • My skills include using Microsoft Office, managing schedules, and communicating in Spanish.

Announcement Email

  • Subject

    • make sure it's accurate the first time

      • ❌Oops! I need to make a correction.
  • Boday
    • people may ask for some additional information, look closely at any questions and not send an email with unanswered questions.

Key Language for Writing These Types of Emails

Introduction Emails (yourself)

  • Introduction Sentence

    • My name is Gerry Landers, and I am with the Georgia Tech Language INstitute in Atlanta, GA.
    • My name is Elizabeth Brown, and I am the General Manager at ABC, Inc.
    • My name is Sam Cook, and I recently received my Master's Degree from University of ABC
  • Controlling Idea
    • I am interested in learning more about Coursera, and I would like more information about creating an online course.
    • I am very interested in your product. I will be in your city, and I would like to visit your factory.
  • Development
    • some WH questions for the reader
    • include the questions directly
      • Who can create an online course?
      • What is the process?
      • Where can I get more information?
    • write more indirectly(more formal and humble)
      • I would like more information or links you have to help me in my process.

Introduction Emails(two different people)

  • Subject Line

    • Matt, meet Sarah. Sarah, meet Matt.
    • Matt, have you met Sarah?
    • Get to know Sarah
  • Controlling Idea
    • Matt, I would like to introduce you to Sarah.
    • Sarah, this is Matt. He is the person I told you about in our last meeting.
  • Development
    • Background
    • Current Job/Rple
    • Additional Contact Information

Announcement Email

  • Introduction Sentence

    • The Language Institute is pleased to inform you that we now offer Business Writing courses in the evening.
    • The ABC Company is opening a store near you
  • Second sentence

    • If our dattime class schedule is not great for you, we will now be here in the evening to help you reach your English learning goals. Contact us at info@esl.gatech.edu to apply.
    • We will have a full selection of products from all over the world for you all at one store.
  • Two types

    • General Information(e.g. Advertisement)
    • Specific Information
      • Special directions/guidelines
  • the email should include who, what, when, where, why, and other details.

Assignment: Revise Your Introduction Email

Subject:

Introduction from Xinzhe Wang

Message:

Dear classmates,

My name is Xinzhe Wang, and I am pursuing my Master's Degree in UC Davis. The reason that I attend to this specialization in Coursera is that I want to practise my English writing and communicating skills. I will try my best in the process of learning. I hope to be friends with you in this course and hope you healthy and safe.

Regards,

Xinzhe Wang

Email: xzewang@ucdavis.edu

Coursera课程笔记----Write Professional Emails in English----Week 3的更多相关文章

  1. Coursera课程笔记----Write Professional Emails in English----Week 1

    Get to Know Basic Email Writing Structures(Week 1) Introduction to Course Email and Editing Basics S ...

  2. Coursera课程笔记----Write Professional Emails in English----Week 5

    Culture Matters(Week 5) High/Low Context Communication High Context Communication The Middle East, A ...

  3. Coursera课程笔记----Write Professional Emails in English----Week 4

    Request and Apology Emails(Week 4) How to Write Request Emails Write more POLITELY & SINCERELUY ...

  4. Coursera课程笔记----Write Professional Emails in English----Week 2

    Let's Start Writing (Week 2) Write Effective Subject Lines be BRIEF 50 characters or less = 5-7 word ...

  5. 操作系统学习笔记----进程/线程模型----Coursera课程笔记

    操作系统学习笔记----进程/线程模型----Coursera课程笔记 进程/线程模型 0. 概述 0.1 进程模型 多道程序设计 进程的概念.进程控制块 进程状态及转换.进程队列 进程控制----进 ...

  6. Coursera课程笔记----C++程序设计----Week3

    类和对象(Week 3) 内联成员函数和重载成员函数 内联成员函数 inline + 成员函数 整个函数题出现在类定义内部 class B{ inline void func1(); //方式1 vo ...

  7. Coursera课程笔记----C程序设计进阶----Week 5

    指针(二) (Week 5) 字符串与指针 指向数组的指针 int a[10]; int *p; p = a; 指向字符串的指针 指向字符串的指针变量 char a[10]; char *p; p = ...

  8. Coursera课程笔记----C程序设计进阶----Week 4

    指针(一) (Week 4) 什么是"指针" 互联网上的资源--地址 当获得一个地址,就能得到该地址对应的资源,所以可以把"网址"称为指向资源的"指针 ...

  9. Coursera课程笔记----C程序设计进阶----Week 3

    函数的递归(Week 3) 什么是递归 引入 函数可以嵌套调用:无论嵌套多少层,原理都一样 函数不能嵌套定义:不能在一个函数里再定义另一个函数,因为所有函数一律平等 问题:一个函数能调用它自己吗? 举 ...

随机推荐

  1. Thinking in Java,Fourth Edition(Java 编程思想,第四版)学习笔记(十三)之Strings

    Immutable Strings Objects of the String class are immutable. If you examine the JDK documentation fo ...

  2. kworkerds 挖矿木马简单分析及清理

    公司之前的开发和测试环境是在腾讯云上,部分服务器中过一次挖矿木马 kworkerds,本文为我当时分析和清理木马的记录,希望能对大家有所帮助. 现象 top 命令查看,显示 CPU 占用 100%,进 ...

  3. 如何教零基础的人认识Python

    前言 文的文字及图片来源于网络,仅供学习.交流使用,不具有任何商业用途,版权归原作者所有,如有问题请及时联系我们以作处理. 作者: 编程派 PS:如有需要Python学习资料的小伙伴可以加点击下方链接 ...

  4. golang slice 源码解读

    本文从源码角度学习 golang slice 的创建.扩容,深拷贝的实现. 内部数据结构 slice 仅有三个字段,其中array 是保存数据的部分,len 字段为长度,cap 为容量. type s ...

  5. 容易忽略的CSS3属性

    flex布局模型 1. flex-direction: row |  row-reverse | column | column-reverse flex-direction 属性决定主轴的方向(即项 ...

  6. tensorflow1.0 队列FIFOQueue管理实现异步读取训练

    import tensorflow as tf #模拟异步子线程 存入样本, 主线程 读取样本 # 1. 定义一个队列,1000 Q = tf.FIFOQueue(1000,tf.float32) # ...

  7. 2019-2020-1 20199325《Linux内核原理与分析》第二周作业

    冯诺依曼计算机硬件框图: 下面是一个简单的程序example.c. intadd_a_and_b(int a,int b){returna+b;}intmain(){returnadd_a_and_b ...

  8. [Qt] 通过socket将另一个程序的某个窗口调到最前端

    @ // THIS IS A HACK: // from QT documentation: // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ...

  9. Elasticsearch系列---实现分布式锁

    概要 Elasticsearch在文档更新时默认使用的是乐观锁方案,而Elasticsearch利用文档的一些create限制条件,也能达到悲观锁的效果,我们一起来看一看. 乐观锁与悲观锁 乐观锁 E ...

  10. Session服务器之Redis

    Session服务器之Redis Redis与Memcached的区别内存利用率:使用简单的key value (键值对)存储的话,Mermcached 的内存利用率更高,而如果Redis采用hash ...