Have you ever received mail from GOD?  I don’t think so and I also haven’t receive any mail from god but I have sent mail acting as GOD :) , sounds strange and stupid. But using Siebel it is possible to send mail to anybody with any address you want.

You can use Communication Outbound Manager to accomplish this.
Before I elaborate on the process how to do it I would like to give a disclaimer.

This post is intended for information purpose only. You should use it only at your risk. Author of this post cannot be held responsible for action taken by user after making use of this information.

You need to create a communication profile before you can send mail. To create a communication profile follow the steps given below

  • Goto Administration Communication » Communication Drivers and Profiles
  • Select Internet SMTP/POP3 Server Profile from List
  • Create a New button in Profiles Tab (2nd List Applet)
    It’s better to copy an existing profile which is working
  • If you are creating a new profile provide following parameters
  • From Address : god@god.com (this will be the email address from which you want to send email)
  • SMTP Server: localhost
  • Siebel Server: your Siebel server name

After you have created the communication profile you need to create a business service on client side. You can do that by going to
Administration Business Service » Script

Write the following code to send email

var bs = TheApplication().GetService(”Outbound Communications Manager”);
var inputs = TheApplication().NewPropertySet();
var outputs = TheApplication().NewPropertySet();
var CommProfile = “Name of the Profile you created”;
inputs.SetProperty(”CommProfile”,CommProfile);
inputs.SetProperty(”MsgToList”,”Email addresses to which you want to send mail”);
inputs.SetProperty(”MsgBody”,”Body of email that you want to send”);
inputs.SetProperty(”MsgSubject”,”Email subject”);
bs.InvokeMethod(”SendMessage”,inputs,outputs);
inputs = null;
outputs = null;
bs = null;

Just simulate this business service by going to Administration  Business Service » Simulator
Type the name of BS and the method that you have created and click on Run. That will send the mail using from address from the profile that you have created. So, in this case it will be a mail from god@god.com :)

There is much easier way to send mail to anybody with any email Id (just like spammers do) using outlook express. If you are intrested to know how just drop in your comments. Provided enough readers want it I will post it here.

OkAvarageGoodVery GoodExcellent (No Ratings Yet)
Loading ... Loading ...

Related Posts