| At line 16 added 4 lines. |
| |port| The port of the SMTP server. When the server is implementing this WSDL, this is the port no the server will listen on. If this WSDL is used for invoking operation, this is the port the BC will try to connect to. The default port is 25 for plain text interaction and 465 for SSL based interaction. |No| 25 |
| |useSSL| Used to specify if the SMTP Server requires SSL authentication. This is currently used only in outbound interactions while connecting to other external SMTP Servers.|No|true |
| |username| Used to specify the username for connecting to other external SMTP Server.|No|user123 |
| |password| Used to specify the password for connecting to other external SMTP Server|No|abc123 |
| At line 21 changed 1 line. |
| <smtp:address location="mailto:someuser@somedomain.com" smtpserver="mail.google.com"/> |
| <smtp:address location="mailto:someuser@somedomain.com" smtpserver="mail.google.com" |
| port="465" username="user123" password="abc123"/> |
| At line 104 added 2 lines. |
| |use| This attribute can be used to specify if the message part containing the SMTP message is encoded or not. The values are encoded/literal. The default is literal.|No|encoded |
| |encocdingStyle| This attribute can be used to specify the encoding scheme to be used if the "use" attribute is set to "encoded". This should be a valid name of an encoder module.|No|customencoder-1.0 |
| At line 108 changed 2 lines. |
| <smtp:input message="nmtokens"? subject="nmtokens"? from="nmtokens"? to="nmtokens"? cc="nmtokens"? bcc="nmtokens"? |
| charset="string"? /> |
| <smtp:input message="nmtokens"? subject="nmtokens"? from="nmtokens"? to="nmtokens"? cc="nmtokens"? bcc="nmtokens" |
| use="encoded" encodingStyle="customencoder-1.0"? charset="string"? /> |
| At line 115 changed 1 line. |
| __Notes__ on {{message}}, {{from}}, and {{subject}}: These elements MUST refer to part names from the input message. |
| __Notes__ on {{message}}, {{from}}, and {{subject}}: These elements MUST refer to part names from the input message. \\ |
| __Notes__ on {{to}}, {{cc}}, and {{bcc}}: These elements MUST refer to part names from the input message. In the runtime the content of these messages should evaluate to comma separated / semi-colon separated email ids of the form username@domain.com |
| At line 117 removed 1 line. |