Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from this space and version 2.00.00

...

smtp-c.h/smtp-c.c

Prototype

 

Code Block
languagecpp
void  SMTPc_SendMsg (NET_SOCK_ID   sock_id,
                     SMTPc_MSG    *p_msg,
                     SMTPc_ERR    *

...

p_err);

...

Arguments

sock_id      

Socket ID.

p_msg          

 SMTPc_MSG structure encapsulating the message to send.perr

p_err            

Pointer to variable that will hold the return error code

...

Module Configuration.

Notes / Warnings

  1.  The The function SMTPc_SetMsg has to be called before being able to send a message.
  2. The message has to have at least one receiver, either "To", "CC", or "BCC".

...