Syntax
SendSMTPEmail (ToMail As String, CCMail As String, BCCMail As String, MailSubject As String, MailBody As String, ServerSerial As String )
Description
The SendSMTPEmail operation is used to send an email to a specific email address.
Request Parameters
Name |
Description |
Required |
ToMail |
- To whom the email will be sent.
- Type: String.
- Default: None.
- Constraints: Must be a valid email.
|
Yes |
CCMail |
- (carbon copy) field of a message receives a copy of the message when you send it.
- Type: String.
- Default: None.
- Constraints: Must be a valid order email.
|
Yes |
BCCMail |
- Blind carbon copy.
- Field of a message receives a copy of that message when you send it.
- Type: String.
- Default: NoneConstraints: Must be a valid order email.
|
Yes |
MailSubject |
- The Email Subject.
- Type: String.
- Default: None.
|
Yes |
MailBody |
- The Email Content
- Type: String
- Default: None
|
Yes |
ServerSerial |
- SMTP Server Name.
- Type: String.
- Default: None.
- Constraints: Must be a valid server.
|
Yes |
Response Elements
Name |
Description |
Result |
This method returns true if the mail sent successfully otherwise it returns false Otherwise, see Error Codes. Type: JSON object as String.
|
Sample
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>SendSMTPEmail</title>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<script >
$(document).ready(function () {
var urlStr = "http://webtrader.hybridsolutions.com/publicweb/webservice.svc";
jQuery.support.cors = true;
$("#progress").ajaxStart(function () { $(this).css("display", "block"); });
$("#progress").ajaxComplete(function () { $(this).css("display", "none"); });
$("#resultAction").ajaxError(function (result) { $(this).html('An error occured'); });
function onSuccessResultOrder(dataResult) {
var result = eval(dataResult);
var rst = result ;
$("#resultAction").html(rst);
}
function onSuccessResult(response) {
response = eval('(' + response + ')')
if (response.UserId == -1 || response.UserId == -207) {
$("#resultData").html("Invalid username or password");
}
else if (response.UserId == -231) {
$("#resultData").html("You must have at least one account");
}
else if (response == null || response == "" || response.UserId < 0) {
$("#resultData").html("Error while login.Please try later");
}
else {
$("#resultData").html("SuccessResult ... UserId is :" + response.UserId);
}
}
function onErrorResult(result) {
alert('Service call faild : ' + result.status + ' ' + result.statusText);
}
$("#btnLogin").click(function () {
$.getJSON(urlStr + "/Login?username=" + $("#txtusername").val() + "&password=" + $("#txtpassword").val() + "&callback=?" , onSuccessResult);
});
$("#btnAction").click(function () {
$.getJSON(urlStr + "/SendSMTPEmail?ToMail=" + $("#txtToMail").val() + "&CCMail=" + $("#txtCCMail").val() + "&BCCMail=" + $("#txtBCCMail").val() + "&MailSubject=" + $("#txtMailSubject").val() + "&MailBody=" + $("#txtMailBody").val() + "&ServerSerial=" + $("#txtServerSerial").val() + "&callback=?", onSuccessResultOrder);
});
});
</script>
<body>
<table border="1px">
<tbody>
<tr>
<td>
Username: <input type="text" id="txtusername" value=""/>
password: <input type="text" id="txtpassword" value=""/>
<button id="btnLogin"> Login </button>
</td>
</tr>
<tr>
<td>ToMail : <input type="text" id="txtToMail" value ="" /> </td>
<td>CCMail: <input type="text" id="txtCCMail" value ="" /> </td>
<td>BCCMail: <input type="text" id="txtBCCMail" value ="" /></td>
</tr>
<tr>
<td>MailSubject:<input type="text" id="txtMailSubject" value ="" /></td>
<td>MailBody :<input type="text" id="txtMailBody" value ="" /></td>
<td>ServerSerial :<input type="text" id="txtServerSerial" value ="" /></td>
<td><button id="btnAction"> SendSMTPEmail </button></td>
</tr>
</tbody>
</table>
<div id="resultData"> </div>
<div id="resultAction"> </div>
<div style="display:none" id="progress">Loading ... </div>
</body>
</html>
See Also
VertexFX WCF Service Index
|