kinda OT--CDO importance

Ask a Question related to ASP, Design and Development.

  1. #1

    Default kinda OT--CDO importance

    I've been using CDO to send an email with an Intranet app I have. Can't for
    the life of me remember where I got this code:

    .Importance = 1 ' Normal
    .BodyFormat = 1 ' Plain text
    .MailFormat = 1 ' Plain text

    Anyway, the boss now wants me to change the importance of the email in
    certain circumstances. I guess just changing the 1 to a 2 would do the
    trick, but I can't find any doc on the MSDN for this. The only thing I found
    was in an ASP 2.0 article, and it said to use: objMail.Importance = cdoLow.
    Since I started by using a number, I want to stay consistent, so can anyone
    provide me a link to something that will tell me the what I need to know on
    this?

    Also, what is the difference between bodyformat and mailformat, as seen
    above?


    middletree Guest

  2. Similar Questions and Discussions

    1. Sending a CDO.Message with high importance?
      Okay... Thought I'd try to move away from CDONTS to CDOSYS. The one thing that's still a puzzle is how to send a CDO.Message so that it shows up...
    2. Data Grid Cell Vertical Scroll Bar. High Importance
      Hi guys, i have a problem in asp.net data grid. If u have a solution let m know. Problem is such that i have a data grid with 2 columns. Columns...
    3. Setting Importance...having issues ! ! !
      I am having some serious issues trying to set the "importance" of an ASP email. I am using the CDO.Message object. Here is the code: <% Dim...
    4. what kinda mouse?
      I have the ms track ball explorer 1. The ball is dragging to bad to use so I'm in the market for a new mouse...I went to the roller ball mouse cause...
    5. kinda OT video ?
      Can a .inf file be made to run a avi or mpeg on insertion of CD? I want to put video file onto cd and have it auto start when it is inserted into...
  3. #2

    Default Re: kinda OT--CDO importance

    Never mind. I went to where I should have gone first, to asp.faq.com, and
    found it. Thanks, Aaron!


    "middletree" <middletree@htomail.com> wrote in message
    news:u5AY8dZmDHA.2500@TK2MSFTNGP10.phx.gbl...
    > I've been using CDO to send an email with an Intranet app I have. Can't
    for
    > the life of me remember where I got this code:
    >
    > .Importance = 1 ' Normal
    > .BodyFormat = 1 ' Plain text
    > .MailFormat = 1 ' Plain text
    >
    > Anyway, the boss now wants me to change the importance of the email in
    > certain circumstances. I guess just changing the 1 to a 2 would do the
    > trick, but I can't find any doc on the MSDN for this. The only thing I
    found
    > was in an ASP 2.0 article, and it said to use: objMail.Importance =
    cdoLow.
    > Since I started by using a number, I want to stay consistent, so can
    anyone
    > provide me a link to something that will tell me the what I need to know
    on
    > this?
    >
    > Also, what is the difference between bodyformat and mailformat, as seen
    > above?
    >
    >

    middletree Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139