zoho

远程控制的具体操作方法

牧云@^-^@ 提交于 2020-02-08 05:15:29
远程控制可以帮助更好的服务客户,为客户解决问题,优秀的远程服务软件必不可少,本文以Zoho Assist为例,详细讲述如何实现远程协助,远程控制计算机。 1、 首先登录到 Zoho 的官网,在客户服务板块中点击“远程控制”,进入到assist界面,在界面下拉后点击“访问 Zoho Assist”,经过简单 远程控制的具体操作方法 2、 首界面远程支持功能下有两种方式,访问远程屏幕和共享我的屏幕,把对方的邮箱地址输入到客户电子邮件地址栏中,点击“立即开始”后将发出邮件,或者也可以在“计划”中预约时间到期自动发出邀请。 3、 发送之后客户将收到邮件邀请,个别情况一些如outlook之类的邮箱接受邮件慢怎么办?不用干等,在界面下方有自动生成的链接,可以直接通过邮件、微信、短信等方式把链接发送给客户。 4、 对方打开邮件邀请或打开链接后,需要点击下载,然后运行ZA Connect(870KB)。 5、 客户加入后,会显示“已加入”,点击“会议中”进入远程操控界面。 6、 在这里,可以协作客户,进行远程操控,并可以通过窗口工具,实现如传输文件、语音视频等多种功能。 7、 如果需要共享屏幕,或者邀请其他技术人员加入,都可以在菜单选项中实现。 来源: CSDN 作者: Zoho_saas 链接: https://blog.csdn.net/Zoho_saas/article/details

如何与客户通过文档协作进行项目管理?

狂风中的少年 提交于 2020-02-08 00:01:12
最近正值远程办公高峰,如果需要在不出现场的前提下,与客户通过文档协作进行项目管理,有什么好的方法呢? 如果你也有类似的困惑的话,下面我们来一起学习如何使用Work Drive企业网盘进行高效率的文档共享协作。 使用 Zoho 的账号登录Work Drive,入口在Zoho官网的邮箱&协作窗口下的“团队文件管理”,有15天的免费使用。 创建文件:进入到主界面后,在“我的文件夹”界面下,点击“新建”可以选择writer,sheet和show分别对应word,excel和powerpoint三种类型的文档,也可以直接选择上传MS office文件或者文件夹。 共享文件:选中某个文件,点击上方的菜单中的三个点,可以看到更多的操作选项。 单选某个文件(如果需要共享的文件多,就放在一个文件夹里,共享这个文件夹)后,可以点击“共享”菜单, 选择“新建外部共享链接”,通过输入对方的邮件地址,将文件共享,并且可以选择设置对方的权限及文档加密等。 点击“创建”之后,将弹出新的窗口显示URL链接,把这个链接发给客户,就可以轻松实现一个文档多人编辑,可以随时下载,分享,编辑文档了。用这种外部共享链接的方式,客户无需注册Zoho账号。 来源: CSDN 作者: Zoho_saas 链接: https://blog.csdn.net/Zoho_saas/article/details/104215319

远程控制软件的使用方法

落花浮王杯 提交于 2020-02-06 00:56:05
远程控制可以帮助更好的服务客户,为客户解决问题,优秀的远程服务软件必不可少,本文以Zoho Assist为例,详细讲述如何实现远程协助,远程控制计算机。 1、 首先登录到 Zoho 的官网,在客户服务板块中点击“远程控制”,进入到assist界面,在界面下拉后点击“访问 Zoho Assist”,经过简单几步的注册,就可以开始15天的免费使用。 2、 首界面远程支持功能下有两种方式,访问远程屏幕和共享我的屏幕,把对方的邮箱地址输入到客户电子邮件地址栏中,点击“立即开始”后将发出邮件,或者也可以在“计划”中预约时间到期自动发出邀请。 3、 发送之后客户将收到邮件邀请,个别情况一些如outlook之类的邮箱接受邮件慢怎么办?不用干等,在界面下方有自动生成的链接,可以直接通过邮件、微信、短信等方式把链接发送给客户。 4、 对方打开邮件邀请或打开链接后,需要点击下载,然后运行ZA Connect(870KB)。 5、 客户加入后,会显示“已加入”,点击“会议中”进入远程操控界面。 6、 在这里,可以协作客户,进行远程操控,并可以通过窗口工具,实现如传输文件、语音视频等多种功能。 7、 如果需要共享屏幕,或者邀请其他技术人员加入,都可以在菜单选项中实现。 来源: CSDN 作者: Zoho_saas 链接: https://blog.csdn.net/Zoho_saas/article

Connection timeout error when sending mail from Zohomail using Nodemailer

半世苍凉 提交于 2020-01-24 12:25:48
问题 Below is my Node app.js code. With these settings, I am receiving a connection timeout error. Any idea what I am missing here? var nodemailer = require("nodemailer"); var transporter = nodemailer.createTransport({ host: 'smtp.zoho.com', port: 465, secure: true, // use SSL auth: { user: '<myemail@example.com>', pass: '<myemailpassword>' } }); var mailOptions = { from: "<fromemail@example.com>", to: "<toemail@example.com>", subject: "Hello", generateTextFromHTML: true, html: { path: './tmpl

Connection timeout error when sending mail from Zohomail using Nodemailer

霸气de小男生 提交于 2020-01-24 12:25:05
问题 Below is my Node app.js code. With these settings, I am receiving a connection timeout error. Any idea what I am missing here? var nodemailer = require("nodemailer"); var transporter = nodemailer.createTransport({ host: 'smtp.zoho.com', port: 465, secure: true, // use SSL auth: { user: '<myemail@example.com>', pass: '<myemailpassword>' } }); var mailOptions = { from: "<fromemail@example.com>", to: "<toemail@example.com>", subject: "Hello", generateTextFromHTML: true, html: { path: './tmpl

Zoho API: Get the user that is making the request

和自甴很熟 提交于 2020-01-23 03:10:46
问题 I have seen Zoho APIs give us the option to get all kinds of user information, yet I cannot find any method to fetch info about the user that is currently making the request. OAuth2 secured API's usually offer such an endpoint, like Google or Twitter do. In their documentation there is something that looks like it: https://www.zohoapis.com/crm/v2/users?type= CurrentUser But then they shatter any hope with their explanation: CurrentUser - To get the list of current CRM users Is there any known

Using Javascript/jQuery to access HTML elements with improper id attribute

一世执手 提交于 2020-01-11 12:14:50
问题 I'm making a Greasemonkey script for someone to change the display of some of the fields their CRM(Zoho) created because they don't have access to change the rendered HTML. This should be easy, BUT Zoho decided that creating proper HTML was too big a pain in the ass, I guess, and their HTML contains things like this: <input type="text" maxlength="50" style="width: 100%;" class="textField" id="property(Phone)" name="property(Phone)"/> The ID's contain spaces and parentheses, which aren't valid

Using Javascript/jQuery to access HTML elements with improper id attribute

橙三吉。 提交于 2020-01-11 12:14:47
问题 I'm making a Greasemonkey script for someone to change the display of some of the fields their CRM(Zoho) created because they don't have access to change the rendered HTML. This should be easy, BUT Zoho decided that creating proper HTML was too big a pain in the ass, I guess, and their HTML contains things like this: <input type="text" maxlength="50" style="width: 100%;" class="textField" id="property(Phone)" name="property(Phone)"/> The ID's contain spaces and parentheses, which aren't valid

如何选择注册企业邮箱

我与影子孤独终老i 提交于 2020-01-07 15:29:07
【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>> 企业邮箱是以企业域名做后缀的邮箱,几乎是企业成立伊始就要配备的工具。对外它能体现公司的品牌和形象,对内它方便对员工信箱进行统一管理。那么如何选择企业邮箱进行注册呢?有以下几点需要考虑: 1.安全稳定 由于一般用于企业和客户之间的沟通,所以选择企业邮箱时最看重的一点是要安全、稳定,在防病毒、反垃圾邮件方面要做得好。比如Zoho Mail,它同时提供免费个人邮箱和企业邮箱,由于很多个人邮箱会被滥用,结果会被投诉,所以为了防止损害企业邮箱用户的利益,这两者使用的IP是不同的,既对个人用户提供了免费邮箱的福利,又保障了企业用户的邮箱安全稳定。 在这里要提醒用户的是,与Gmail不同,Zoho Mail不允许群发营销邮件,会被封号,虽然找技术支持会给解封,但还是很耽误事情的。其实Zoho 有专门的邮件群发工具,叫Zoho Campaigns。它的免费版有各种营销邮件模板,每月最多可向2,000 位收件人发送 12,000 封电子邮件,足够用了。千万不要用Zoho Mail 群发营销邮件,会被封。 2.邮件抵达率 邮件抵达率的高低和很多因素有关。比如有些企业用户反映,用国内邮箱给其国外客户发邮件,客户经常说没收到,或者进入了对方的垃圾箱。这种情况下,一般建议用服务器在 国外的企业邮箱

SMTP not working in CI 3.0 while same code is working in CI 2.*

你说的曾经没有我的故事 提交于 2019-12-23 03:00:36
问题 This is a big issue i'm struggling with, the thing is our application needs to send email, now we are relying on smtp, until 2.*(latest) email worked fine, but as soon as we ported app in ci 3.0 everything worked by smtp, here is error we are getting on ci 3.0 sample email A PHP Error was encountered Severity: Warning Message: fwrite(): SSL operation failed with code 1. OpenSSL Error messages: error:140D00CF:SSL routines:SSL_write:protocol is shutdown Filename: libraries/Email.php Line Number