0

我有一个包裹,我可以在其中发送带有内嵌图片的电子邮件。我在包中的脚本任务中使用 html 格式。

问题是,当我将别名作为收件人时,我收到了预期的电子邮件。带有图像和字体。但是当我把我同事的别名作为收件人时,他只得到没有图片的html页面。

如果图像在我的本地机器上,他不应该在我从终端运行包并且图像在我的机器上可用时也获取图像吗?

4

1 回答 1

0
****it is not a good approach its better you put image on  some server and upload it and from there via  <img src""> embed into you email body.
This way it will resolve the issue and a standardized way .****

Other wise call the image through config file  and pass that value as a [parameter :

<Configuration ConfiguredType="Property" Path="\Package.Variables     [User::EmbedImagePath].Properties[Value]" ValueType="String">
    <ConfiguredValue>**Path of the file** </ConfiguredValue>
  </Configuration>

than in the script call this :
lnkRes = New LinkedResource(Dts.Variables("EmbedImagePath").Value.ToString, System.Net.Mime.MediaTypeNames.Image.Jpeg)
            lnkRes.ContentId = "**Imagename**"

            altView = AlternateView.CreateAlternateViewFromString(varMailBody, Nothing, System.Net.Mime.MediaTypeNames.Text.Html)
            altView.LinkedResources.Add(lnkRes)
于 2014-11-28T13:34:23.560 回答