CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Mar 1999
    Posts
    1

    adding subject with rfc



    we are trying to automate the process of sending mails using RFC

    the problem we are facing is that we are unable to include anything as

    the subject part

    the mail as such is delivered but minus the subject

    any help on this issue is welcome

    thanks

    rajesh

  2. #2
    Join Date
    Mar 1999
    Location
    Wuhan, Hubei, China
    Posts
    9

    Re: adding subject with rfc



    Here's a sample. You can test it using telnet.


    helo richinfo.com

    mail from:[email protected]

    rcpt to:[email protected]

    data

    from:"chenhao" //sender's "display name" and address

    to:"webmaster" //receiver's "display name" and address

    subject:test //**Specify the subject here

    This is a test. //mail body

    . //end of mail

    quit


    chenhao

    any question please contact:[email protected]



Posting Permissions

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





Click Here to Expand Forum to Full Width

Featured