Let's Start Writing (Week 2)

Write Effective Subject Lines

be BRIEF

50 characters or less = 5-7 words

for all devices: 25-30 characters = 3 - 5 words

be CLEAR

  1. Include KEY WORDS
  2. Put important words at BEGINNING
  • Introduce,introduction

    • Introduction - Xinzhe Wang
    • Introduction from Xinzhe Wang
  • Applying for a job
    • Job Application - Xinzhe Wang
    • Job Applicant - Xinzhe Wang
  • Meeting Request
    • Meeting Request for Next Week
    • Requesting a Meeting Next Week

be DIRECT

  • Applying for a job

    • Job Application - Xinzhe Wang, Ph.D.
    • Senior Researcher - Xinzhe Wang, Ph.D.
    • Senior Researcher, No. 1234 - Xinzhe Wang, Ph.D.
  • Making Announcements

    • Join Us for Our Grand Opening

    • Meet Our New CEO

    • Try Our Newest Product

      • which can also include date and time

      • you can also include your company name rather than using pronouns

  • Meeting Requests

    • ❌Meeting Request for Next Week
    • ✅Meeting Request: Marketing Plan for New Product
    • ✅Meeting Request: 11AM, May 10 in Room A
  • Meeting Cancelations

    • ❌Meeting Canceled
    • ✅Canceled: Meeting for 11AM, May 10
    • ✅Canceling 11AM Meeting on May 10

START with Subject Line

  1. Clear DIRECTiON
  2. Never leave blank

Write Well-organized Email Text

Introduction

  • WHO & WHAT(1st sentence = 1st impression)

    • WHO AUTHOR(Subject of 1st sentence)

      • name + position/organization (First time)

        My name is James Brown, and I am the general manager at Goods and Services, LLC.

      • pronoun(I,we,he,she,...) (Not first time)

        I am delighted to inform you that we are now offering a 30% discount in our entire inventory.

    • Controlling Idea = Purpose

      • I am delighted to inform you that we are now offering a 30% discount in our entire inventory.

Development

  • plan your email text by writing down the WH questions and answer it.

Conclusion

  • APPRECIATION

    • thank
    • appreciate
    • be glad about
  • POSITIVE
    • hope

      • I hope you fine out catalogs appropriate for your business.
    • wish
    • look forward to

Assignment: Complete Monica's Email

Subject:

Job Application - Monica Moore

Message:

To Whom It May Concern,

My name is Monica Moore. I'm applying for a accounting job at ABC, Inc.

I will be great fit for this position beacuse I am skilled in various word-processing software and accounting software. I also have great communication skills. My resume includes more details of my skills and education. I am looking forward to your acceptance, and I hope you stay healthy and safe.

Best,

Monica Moore

Tel: +1-123-456-7890

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

  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 3

    Introduction and Announcement Emails (Week 3) Overview of Introduction & Announcement Emails Bas ...

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

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

  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. 复习python的多态,类的内部权限调用 整理

    #多态的用法 class Dii: passclass Aii(Dii): def run(self): print('一号函数已调用')class Bii(Dii): def run(Dii): p ...

  2. Python程序设计实验报告三:分支结构程序设计

    安徽工程大学 Python程序设计 实验报告 班级   物流191   姓名  姚彩琴  学号3190505129 成绩 日期     2020.4.5     指导老师       修宇 [实验目的 ...

  3. vue2.x学习笔记(十七)

    接着前面的内容:https://www.cnblogs.com/yanggb/p/12616847.html. 动态组件&异步组件 在前面学习组件基础的时候学习过动态组件,官方文档给出过一个例 ...

  4. 2020-3 网络对抗技术 20175120 exp5 信息搜集与漏洞扫描

    目录 实践目标 实践内容 各种搜索技巧的应用 搜索特定类型的文件Google Hacking 搜索网站目录结构 DNS IP注册信息的查询 网络侦查 基本的扫描技术:主机发现.端口扫描.OS及服务版本 ...

  5. selenium 执行js代码

    获取一个input输入框的值: JavascriptExecutor js =(JavascriptExecutor) driver; merchatName=js.executeScript(&qu ...

  6. Java讲解RPC的基本实现

    RPC远程过程调用可以说是分布式系统的基础,本文将通过Java演示一次普通的rpc调用到底发生了什么. 我曾经在网上看到有人提问,为什么RPC要叫作远程过程调用,而不叫作RMC远程方法调用.个人认为R ...

  7. layui table渲染和数据处理

    最近在用layui开发管理系统,果然是"累"ui 实现功能:将之前选择的选项勾选,渲染备注信息(原数据为空的列) <table class="layui-hide& ...

  8. SpringCloud-Gateway 网关路由、断言、过滤

    Gateway 简介 是什么? Spring Cloud 全家桶中有个很重要的组件:网关.在 1.x 版本中使用的是 Zuul 网关,但是到了 2.x,由于Zuul的升级不断跳票,Spring Clo ...

  9. SQL Server 之T-SQL基本语句 (3)

    继续来用例子总结sql基本语句用法. 在这里在建一个表:课 课程名 上课时间 数学 周一 数学 周二 数学 周三 语文 周一 语文 周二 英语 周一 数据分组:GROUP  BY select  课程 ...

  10. python-Django收集主机信息json格式

    Control: from django.conf.urls import patterns, include, url from django.contrib import admin admin. ...