Doesn't work compiled

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Guest's Avatar

    #1

    Doesn't work compiled




    This code work perfectly uncompiled. g.message isn't showing up in the
    email when compiled however. Doesn't make sense to me. Any ideas?
    TIA!


    <MvSMTP
    TO="{g.to}"
    SUBJECT="{g.subject}"
    MAILHOST="{g.mailhost}"
    FROM="{g.email}">
    <MvEVAL EXPR="{asciichar(10)}">

    <MvEVAL EXPR="{g.message}">

    </MvSMTP>


    --
    Best regards,
    IDS mailto:[email protected]


  • Guest's Avatar

    #2
    Doesn't work compiled



    This code looks fine. My guess is that earlier in the code
    where you assign g.message is where the fault lies.

    /Scott Mc

    --- IDS <[email protected]> wrote:
    >
    > This code work perfectly uncompiled. g.message isn't
    > showing up in the
    > email when compiled however. Doesn't make sense to me.
    > Any ideas?
    > TIA!
    >
    >
    > <MvSMTP
    > TO="{g.to}"
    > SUBJECT="{g.subject}"
    > MAILHOST="{g.mailhost}"
    > FROM="{g.email}">
    > <MvEVAL EXPR="{asciichar(10)}">
    >
    > <MvEVAL EXPR="{g.message}">
    >
    > </MvSMTP>
    >
    >
    > --
    > Best regards,
    > IDS mailto:[email protected]
    >
    >

    Comment

    • Guest's Avatar

      #3
      Re[2]: Doesn't work compiled



      Hello Scott,

      Well, I'm wrong about it not making it into the email. When I look at
      the source of the email, the g.message value is there, one line after the
      subject. Is there supposed to be a blank line after the subject?

      Thanks again,

      Scott
      IDS

      Friday, March 4, 2005, 11:05:48 PM, you wrote:

      SM> This code looks fine. My guess is that earlier in the code
      SM> where you assign g.message is where the fault lies.

      SM> /Scott Mc

      SM> --- IDS <[email protected]> wrote:
      >>
      >> This code work perfectly uncompiled. g.message isn't
      >> showing up in the
      >> email when compiled however. Doesn't make sense to me.
      >> Any ideas?
      >> TIA!
      >>
      >>
      >> <MvSMTP
      >> TO="{g.to}"
      >> SUBJECT="{g.subject}"
      >> MAILHOST="{g.mailhost}"
      >> FROM="{g.email}">
      >> <MvEVAL EXPR="{asciichar(10)}">
      >>
      >> <MvEVAL EXPR="{g.message}">
      >>
      >> </MvSMTP>
      >>
      >>
      >> --
      >> Best regards,
      >> IDS mailto:[email protected]
      >>
      >>

      Comment

      • Guest's Avatar

        #4
        Re[3]: Doesn't work compiled



        Looks like there was supposed to be a blank line. Here's the working code. Thanks all.

        <MvSMTP
        TO="{g.to}"
        SUBJECT="{g.subject}"
        MAILHOST="{g.mailhost}"
        FROM="{g.email}">
        <MvEVAL EXPR="{asciichar(13) $ asciichar(10)}">

        <MvEVAL EXPR="{g.message}">

        </MvSMTP>


        Scott
        IDS


        Friday, March 4, 2005, 11:59:58 PM, you wrote:

        I> Hello Scott,

        I> Well, I'm wrong about it not making it into the email. When I look at
        I> the source of the email, the g.message value is there, one line after the
        I> subject. Is there supposed to be a blank line after the subject?

        I> Thanks again,

        I> Scott
        I> IDS

        I> Friday, March 4, 2005, 11:05:48 PM, you wrote:

        SM>> This code looks fine. My guess is that earlier in the code
        SM>> where you assign g.message is where the fault lies.

        SM>> /Scott Mc

        SM>> --- IDS <[email protected]> wrote:
        >>>
        >>> This code work perfectly uncompiled. g.message isn't
        >>> showing up in the
        >>> email when compiled however. Doesn't make sense to me.
        >>> Any ideas?
        >>> TIA!
        >>>
        >>>
        >>> <MvSMTP
        >>> TO="{g.to}"
        >>> SUBJECT="{g.subject}"
        >>> MAILHOST="{g.mailhost}"
        >>> FROM="{g.email}">
        >>> <MvEVAL EXPR="{asciichar(10)}">
        >>>
        >>> <MvEVAL EXPR="{g.message}">
        >>>
        >>> </MvSMTP>
        >>>
        >>>
        >>> --
        >>> Best regards,
        >>> IDS mailto:[email protected]
        >>>
        >>>

        Comment

        Working...
        X