将我们的标志放入系统发出的电子邮件通知中

发布于 2024-09-30 14:53:19 字数 200 浏览 1 评论 0原文

我们希望能够显示我们的徽标,但它总是出现“下载图像”提示,而不是在正文中显示电子邮件。

电子邮件是使用 Oracle Mail_pkg 构建的...如何将图像添加到 HTML正文以便用户无需像附件一样下载图像即可显示? (也想在黑莓中显示)

我知道这是可能的,因为如果您将图像添加到 Outlook 签名中,您可以在 Outlook 和黑莓上看到这些图片

We want to be able to show our logo, but it always comes out with "Download Image" prompt instead of showing the email in the body..

Emails are built using the Oracle Mail_pkg... How do I add the image to the HTML body so that it shows without a user having to download the image like it's an attachment? (also want to show it in blackberry)

I know it's possible since if you add an image to the outlook signature, you can see those pictures on outlook and blackberry

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

噩梦成真你也成魔 2024-10-07 14:53:19

除了 sleske 提供的一个很好的答案之外,我还可以建议您创建一条您希望在 Outlook 或其他地方看起来像的消息,查看消息源并尝试在 Oracle 中重现它。

另请记住,使用 utl_mail 包,您可以发送正文长度仅为 4 000 个字符的消息(SQLvarchar2 类型的大小)。我建议您尝试 utl_smtp 包,尽管它需要更多的编码和准确性,但它为您提供了创建精美电子邮件的更大灵活性。

Along with a nice answer sleske provided I can suggest you to create a message you want to look like in Outlook or elsewhere, take a look at the message source and try to reproduce it in Oracle.

Also bear in mind that using utl_mail package you can send messages with body only 4 000 chars long (the size of varchar2 type in SQL). I can suggest you try utl_smtp package, though it requires a little more coding and accuracy, it gives you much more flexibility in creating fancy e-mails.

灯角 2024-10-07 14:53:19

您需要将图像本身包含在电子邮件中,通常作为附件。

要使其显示在电子邮件中,您需要从电子邮件中链接到附件。这通常是使用 cid 方案来完成的。

请参阅例如 http://mailformat.dan.info/headers/mime.html更多信息。

或者直接访问源代码:

Content-ID 和 Message-ID 统一资源定位器

You need to include the image itself inside the email, usually as an attachment.

To have it show inside the email, you need to link to the attachment from inside your email. This is commonly done using the cid scheme.

See e.g. http://mailformat.dan.info/headers/mime.html for more information.

Or straight to the source:

Content-ID and Message-ID Uniform Resource Locators

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文