outlook发送接收错误_如何在Outlook 2013中为RSS源创建发送/接收组

outlook发送接收错误

outlook发送接收错误

00_lead_image_rss_feeds_send_receive_group

If you choose to manually update your RSS feeds on demand, there is a way to do this without having to send and receive your email at the same time. You can create a special Send/Receive Group for your RSS feeds.

如果您选择按需手动更新RSS feed,则有一种方法可以执行此操作,而不必同时发送和接收电子邮件。 您可以为RSS feed创建一个特殊的发送/接收组。

NOTE: If you choose to not have your RSS feeds updated automatically, creating a separate Send/Receive Group for your RSS feeds is useful so you can update them when you want to.

注意:如果您选择不自动更新RSS源 ,则为RSS源创建一个单独的发送/接收组很有用,因此您可以在需要时对其进行更新。

To begin creating a new Send/Receive Group, click the File tab.

要开始创建新的发送/接收组,请单击“文件”选项卡。

01_clicking_file_tab

Click Options in the menu on the left side of the Account Information screen.

单击“帐户信息”屏幕左侧菜单中的“选项”。

02_clicking_options

On the Outlook Options dialog box, click Advanced in the left pane list of menu options.

在“ Outlook选项”对话框上,在菜单选项的左窗格列表中单击“高级”。

03_clicking_advanced

In the right pane, scroll down to the Send and receive section and click the Send/Receive button.

在右窗格中,向下滚动到“发送和接收”部分,然后单击“发送/接收”按钮。

04_clicking_send_receive

On the Send/Receive Groups dialog box, click New next to the list of groups.

在“发送/接收组”对话框中,单击组列表旁边的“新建”。

05_clicking_new

On the Send/Receive Group Name dialog box, enter a name, such as “RSS Feeds On Demand Only,” in the edit box and click OK.

在“发送/接收组名称”对话框中,在编辑框中输入一个名称,例如“仅按需提供RSS订阅”,然后单击“确定”。

06_naming_new_send_receive_group

For all the other Accounts, except RSS, in the list on the left, de-select the Include RSS Feeds in this Send/Receive group check box so there is NO check mark in the box. Click RSS under Accounts, and make sure the Include RSS Feeds in this Send/Receive group check box is selected.

对于除RSS以外的所有其他帐户,在左侧列表中,取消选中“在此发送/接收组中包括RSS提要”复选框,以使该框中没有复选标记。 单击“帐户”下的“ RSS”,并确保选中“在此发送/接收组中包括RSS源”复选框。

07_only_including_rss_feeds_in_group

NOTE: If you want to have a separate Send/Receive group for each RSS Feed or group certain RSS feeds together, you can turn on and off specific feeds in the lower half of the Send/Receive Settings dialog box. If you decide to do this, you might specify a more appropriate name for each Send/Receive group for the RSS feeds.

注意:如果要为每个RSS Feed单独创建一个发送/接收组,或将某些RSS Feed分组在一起,则可以在“发送/接收设置”对话框的下半部分打开和关闭特定的Feed。 如果您决定这样做,则可以为RSS feed的每个Send / Receive组指定一个更合适的名称。

Click OK to accept your changes and close the Send/Receive dialog box.

单击“确定”接受更改,然后关闭“发送/接收”对话框。

08_selecting_feeds

Make sure your new Send/Receive group is selected in the list of groups on the Send/Receive Groups dialog box. De-select all the options under Setting for group section at the bottom of the dialog box and click Close. This prevents this group from being updated when you click the general Send/Receive button to retrieve your email.

确保在“发送/接收组”对话框的组列表中选择了新的“发送/接收”组。 取消选择对话框底部的“设置组”部分下的所有选项,然后单击“关闭”。 单击常规的“发送/接收”按钮以检索电子邮件时,这可以防止更新该组。

09_turning_off_options

Click OK on the Outlook Options dialog box.

在“ Outlook选项”对话框中,单击“确定”。

10_closing_options_dialog

To manually update your RSS feeds, click the Send / Receive tab.

要手动更新RSS提要,请单击“发送/接收”选项卡。

11_clicking_send_receive_tab

Click Send/Receive Groups and select your new group from the drop-down list.

单击发送/接收组,然后从下拉列表中选择新的组。

12_updating_rss_feeds_send_receive_group

You can change, rename, or remove any Send/Receive Groups you create by accessing the Send/Receive Groups dialog box again.

您可以通过再次访问“发送/接收组”对话框来更改,重命名或删除您创建的任何发送/接收组。

翻译自: https://www.howtogeek.com/173178/how-to-create-a-sendreceive-group-for-rss-feeds-in-outlook-2013/

outlook发送接收错误

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
可以使用JavaMail API来发送Outlook邮件。以下是一个简单的示例代码: ```java import java.util.Properties; import javax.mail.Message; import javax.mail.MessagingException; import javax.mail.Session; import javax.mail.Transport; import javax.mail.internet.InternetAddress; import javax.mail.internet.MimeMessage; public class SendMail { public static void main(String[] args) { // 收件人电子邮箱 String to = "recipient@example.com"; // 发件人电子邮箱 String from = "sender@example.com"; // 指定发送邮件的主机为 smtp.office365.com String host = "smtp.office365.com"; // 获取系统属性 Properties properties = System.getProperties(); // 设置邮件服务器 properties.setProperty("mail.smtp.host", host); properties.setProperty("mail.smtp.port", "587"); properties.setProperty("mail.smtp.starttls.enable", "true"); properties.setProperty("mail.smtp.auth", "true"); // 获取默认的 Session 对象 Session session = Session.getDefaultInstance(properties); try { // 创建默认的 MimeMessage 对象 MimeMessage message = new MimeMessage(session); // 设置 From: 头部 message.setFrom(new InternetAddress(from)); // 设置 To: 头部 message.addRecipient(Message.RecipientType.TO, new InternetAddress(to)); // 设置 Subject: 头部 message.setSubject("这是邮件主题"); // 设置实际消息 message.setText("这是邮件内容"); // 发送消息 Transport tr = session.getTransport("smtp"); tr.connect(host, "<your-email>", "<your-password>"); tr.sendMessage(message, message.getAllRecipients()); tr.close(); System.out.println("邮件已经成功发送!"); } catch (MessagingException mex) { mex.printStackTrace(); } } } ``` 请注意:在使用此代码之前,您需要将 `host`、`from`、`to`、`<your-email>` 和 `<your-password>` 替换为您自己的信息。另外,您还需要导入 JavaMail API 和依赖的其他库。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值