472,373 Members | 1,982 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,373 software developers and data experts.

cdonts embedded image not displayed in lotus

hi
My readers that are lotus note user receive the mails I send using
cdonts with image displayed as attachement in place of inline.

I read http://www-1.ibm.com/support/docview...id=swg27002572
that say "for displaying image inline in lotus you must set correct
mime header as content disposition : inline"

however I can't achieve it with cdonts : my mime header is stuck to
"content disposition : attachemnt" and I can't see how to change it.

I read somewhere that using attachurl instead of attachfile will fix
it but my test did not achieve this way.

Any of you experienced sending inline image to lotus note users with
cdonts ?
Jul 22 '05 #1
1 2732
In that case, use CDO where you have a lot more possibilities.
Start here...

Set mail = CreateObject("CDO.Message")

Set mailConfig = CreateObject("CDO.Configuration")

with mailConfig.fields

..item("http://schemas.microsoft.com/cdo/configuration/sendusing").value =2

..item("http://schemas.microsoft.com/cdo/configuration/smtpserver").value
="192.168.0.7"

..item("http://schemas.microsoft.com/cdo/configuration/sendpassword").value=
"secret"

..item("http://schemas.microsoft.com/cdo/configuration/sendusername").value =
ma***@mail.invalid

..item("urn:schemas:httpmail:content-disposition-type").value = "inline"

'cdoHTTPMail.cdoContentDispositionType

..update

End With

Set mail.Configuration = mailConfig

Mail.To = "eg***********@mail.invalid"

Mail.From = "yo*******@blah.com"

mail.Subject ="Тест"

Mail.Send
--
compatible web farm Session replacement for Asp and Asp.Net
http://www.nieropwebconsult.nl/asp_session_manager.htm

"mrique" <mr****@hotmail.com> wrote in message
news:a3**************************@posting.google.c om...
hi
My readers that are lotus note user receive the mails I send using
cdonts with image displayed as attachement in place of inline.

I read http://www-1.ibm.com/support/docview...id=swg27002572
that say "for displaying image inline in lotus you must set correct
mime header as content disposition : inline"

however I can't achieve it with cdonts : my mime header is stuck to
"content disposition : attachemnt" and I can't see how to change it.

I read somewhere that using attachurl instead of attachfile will fix
it but my test did not achieve this way.

Any of you experienced sending inline image to lotus note users with
cdonts ?


Jul 22 '05 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Chris Kennedy | last post by:
I have a web application which saves files to a server and emails the file as an attachment. I generate a unique name for each file by concatenating a unique numeric string so the file name is...
2
by: David Morgan | last post by:
Hello I have been using the CDONTS.Newmail object for a number of years to send nicely formatted HTML Emails with inline images. I am now trying to switch over to using CDO and I cannot...
2
by: Yan | last post by:
Hi everyone, I got a little problem while sending HTML e-mails with CDONTS. I generate my e-mail body without problems into a string variable. When I display it to the browser via a...
3
by: RICHARD BROMBERG | last post by:
I am using ASP and CDONTS to read data entered into a Form and E-mail the data entered to me. The Form is pretty long and has about thirty Text entry boxes and some radio buttons. After the...
4
by: Mac Davis | last post by:
Ive just learned that CDONTS is not available of Server 2003. So, I've been trying to make sense out of what I can read. I have succeeded in completely confusing myself. In one place Microsoft...
1
by: Pav | last post by:
Hi, I am developing a small Intranet web application which needs to send mails to our coporate Ids. I am using CDONTS, But my mails never leave Que folder. Not able to find out what the...
3
by: Pav | last post by:
Hi, I am developing a small Intranet web application which needs to send mails to our coporate Ids. I am using CDONTS, But my mails never leave Que folder. Not able to find out what the...
7
by: Paul | last post by:
I have just started work on a system using CDONTS to mail out. Whilst this is fine on the server, my local development machine is using XP Pro with IIS5.1 installed. Is there a way I can get the...
6
by: LEM | last post by:
Hi, I use a Webbrowser component to display a page that has been generate dynamically from my C# program. This page contains some images that are displayed using HTML code like this: <img...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge required to effectively administer and manage Oracle...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was proposed, which integrated multiple engines and...
0
hi
by: WisdomUfot | last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific technical details, Gmail likely implements measures...
0
BLUEPANDA
by: BLUEPANDA | last post by:
At BluePanda Dev, we're passionate about building high-quality software and sharing our knowledge with the community. That's why we've created a SaaS starter kit that's not only easy to use but also...
0
by: Rahul1995seven | last post by:
Introduction: In the realm of programming languages, Python has emerged as a powerhouse. With its simplicity, versatility, and robustness, Python has gained popularity among beginners and experts...
2
by: Ricardo de Mila | last post by:
Dear people, good afternoon... I have a form in msAccess with lots of controls and a specific routine must be triggered if the mouse_down event happens in any control. Than I need to discover what...
1
by: Johno34 | last post by:
I have this click event on my form. It speaks to a Datasheet Subform Private Sub Command260_Click() Dim r As DAO.Recordset Set r = Form_frmABCD.Form.RecordsetClone r.MoveFirst Do If...
1
by: ezappsrUS | last post by:
Hi, I wonder if someone knows where I am going wrong below. I have a continuous form and two labels where only one would be visible depending on the checkbox being checked or not. Below is the...
0
DizelArs
by: DizelArs | last post by:
Hi all) Faced with a problem, element.click() event doesn't work in Safari browser. Tried various tricks like emulating touch event through a function: let clickEvent = new Event('click', {...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.