Click here to Skip to main content
15,911,890 members
Home / Discussions / Web Development
   

Web Development

 
GeneralJavascript frame location Pin
sschilachi14-Feb-04 8:51
sschilachi14-Feb-04 8:51 
GeneralRe: Javascript frame location Pin
lanying_wzw27-Feb-04 3:30
lanying_wzw27-Feb-04 3:30 
GeneralIIS 6.0 & Windows 2k3 question Pin
Chen Venkataraman13-Feb-04 5:52
Chen Venkataraman13-Feb-04 5:52 
GeneralRe: IIS 6.0 & Windows 2k3 question Pin
Shahin7713-Feb-04 6:15
Shahin7713-Feb-04 6:15 
GeneralCDOsys & Read receipt Pin
Ant6313-Feb-04 5:24
Ant6313-Feb-04 5:24 
GeneralRe: CDOsys & Read receipt Pin
-- NA --13-Feb-04 10:39
-- NA --13-Feb-04 10:39 
GeneralRe: CDOsys & Read receipt Pin
Ant6316-Feb-04 1:56
Ant6316-Feb-04 1:56 
GeneralRe: CDOsys & Read receipt Pin
-- NA --16-Feb-04 5:30
-- NA --16-Feb-04 5:30 
I just did some research on the MIME headers required for read-receipts, and as far as I can make out this is all you'll need: (obviously depending on how the CDO mail component works, I haven't used it)

Instead of:

var cdoDispositionNotificationTo = "urn:schemas:mailheader:dispositon-notification-to";<br />
var cdoReturnReceiptTo = "urn:schemas:mailheader:Read-Receipt-To";<br />
<br />
// snip<br />
<br />
objFields.Item(cdoDispositionNotificationTo) = strSender<br />
objFields.Item(cdoReturnReceiptTo) = strSender


You should be able to get away with the following:

var cdoDispositionNotificationTo = "Disposition-Notification-To";<br />
<br />
// snip<br />
<br />
objFields.Item(cdoDispositionNotificationTo) = strSender;


I'm not entirely sure what the effect of (not) using the schemas is, but as far as I can see that should work... Good luck Smile | :)

[edit] You probably also need a semicolon after the "objFields.Item(cdoDispositionNotificationTo) = strSender" line - I see you don't have that in your code... Smile | :) [/edit]

Paul Wink | ;)

van der walt is qualified to answer - googlism



modified 18-Jul-18 11:59am.

GeneralFTP Program Pin
bpchia12-Feb-04 21:54
bpchia12-Feb-04 21:54 
GeneralRe: FTP Program Pin
alex.barylski13-Feb-04 0:34
alex.barylski13-Feb-04 0:34 
GeneralRe: FTP Program Pin
bpchia13-Feb-04 4:02
bpchia13-Feb-04 4:02 
GeneralRe: FTP Program Pin
alex.barylski13-Feb-04 9:58
alex.barylski13-Feb-04 9:58 
GeneralWeb Browser Pin
TrungHuynh12-Feb-04 20:48
TrungHuynh12-Feb-04 20:48 
GeneralRe: Web Browser Pin
alex.barylski13-Feb-04 0:35
alex.barylski13-Feb-04 0:35 
QuestionUsing Session in Web Parts? Pin
Member 85730411-Feb-04 7:12
Member 85730411-Feb-04 7:12 
GeneralMoving controls housed in a Panel control.... Pin
gordingin11-Feb-04 2:52
gordingin11-Feb-04 2:52 
GeneralRe: Moving controls housed in a Panel control.... Pin
John Kuhn11-Feb-04 14:18
John Kuhn11-Feb-04 14:18 
GeneralPerl / Tk. Help needed!! Pin
joniboy12311-Feb-04 0:24
joniboy12311-Feb-04 0:24 
GeneralI.E.5.0 on MAC OS Pin
jillellamudi10-Feb-04 20:04
jillellamudi10-Feb-04 20:04 
GeneralRe: I.E.5.0 on MAC OS Pin
Not Active11-Feb-04 7:09
mentorNot Active11-Feb-04 7:09 
GeneralRe: I.E.5.0 on MAC OS Pin
jillellamudi11-Feb-04 17:19
jillellamudi11-Feb-04 17:19 
GeneralRe: I.E.5.0 on MAC OS Pin
Not Active12-Feb-04 2:54
mentorNot Active12-Feb-04 2:54 
GeneralRe: I.E.5.0 on MAC OS Pin
l a u r e n11-Feb-04 14:10
l a u r e n11-Feb-04 14:10 
GeneralRe: I.E.5.0 on MAC OS Pin
Not Active12-Feb-04 3:15
mentorNot Active12-Feb-04 3:15 
GeneralRe: I.E.5.0 on MAC OS Pin
Paul Watson12-Feb-04 5:53
sitebuilderPaul Watson12-Feb-04 5:53 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.