Sending mails automatically at regular intervals

Hello everyone,
We have to create Auto Responder application where we need to send mails automatically to customers(clients) at regular intervals. we need to send these mails automatically without any manual involvement.Wat we know is just the client's email and once we get the clients mail,our application should be able to send these mails at regular periodic intervals. Plz help me out in arriving at a solution for this problem.

I'm loathe to respond to a thread about what could very well be spamming software. You posted this question in multiple forums, which doesn't help the case any. In any case, you received responses pointing you in the right direction in the other forums. Please do not abuse our forums and waste our time by posting the same question in multiple forums.
-Ian Evans

Similar Messages

  • How to send a mail automatically at regular intervals

    Hello everyone,
    I need to develop an Auto Responder application where we have to send mails to customers automatically at regular intervals. I had no idea on the concept of sending mails automatically at certain time intervals. So, i request you to help me in this regard and solve my problem.

    Hi,
    its very simple, U can use Java mail or other api for sending mail,
    Use Timer and TimerTask for sending at regular intervals
    public SendMail extends TimerTask
    // other initializations
    public void run()
    // Send mail code
    public class MailExample
    // Half an Hour , every half an hour it runs the job
    static final int INTERVAL=1000*60*30;
    // Before running job wait 1 minute
    static final int WAIT=1000*60;
    public static void main(String args[])
    TimerTask sendMail=new SendMail();
    Timer mail=new Timer();
    mail. schedule(sendMail,WAIT,INTERVAL);
    if any help needed, send mail to prasadbr33 at gmail dot com
    Hope it would solve ur problem
    Cheers
    Rajendra Bandi

  • Send a mail automatically at regular intervals

    Hello,
    I need to develop an Auto responder application where i need to send mails or newsletters to customers automatically without any manual involvement.These mails should be sent at regular time intervals(Every 7-days ...etc).I request you to help me in arriving at a solution for this problem.

    Are you on a windows machine? If yes you can simply develop your java code, create a .bat launcher and register it in the Scheduled Tasks (in the Control Panel) configuring it to run every 7 days.

  • BPM composer getting refreshed automatically at regular intervals

    Hi,
    We have installed SOA Suite 11.1.1.6. While working on BPM composer, the window gets refreshed automatically after regular intervals and the entire work gets lost.
    Any help is highly appreciated.
    Thanks,
    Deepak

    > and the tcode for the lock is KRNL. and we dont have any other information regarding this.
    You mention that this is the account of an employee, so I assume a Dialog type user ID.
    Sounds to me like a script somewhere with this user ID in it for the connection to the system. Could be anywhere... theoretically also on a PC.
    Contact the user and ask them whether they saved their pwd anywhere.
    Also activate the SM20 dynamic filters to find the terminal for all types of events (also not critical) before the next pwd lock of the user (128).
    If you find that the terminal is an application server of your own system, then you will need to check your jobs again in more detail and in extreme cases even transport imports.
    Cheers,
    Julius

  • Re : send mail automatically

    Hi
    I had configured email setup for sales order creation and its working fine.
    Now my query is mail has to be sent automatically, at present mail triggers if i click in "SBWP - business work place"(sap-inbox).
    But i need to send mail automatically without making a click in SBWP.
    How to solve this.
    Thanks
    Anto

    Hi Antony!
    Did you try implementing the standard task and triggering it with the event as mentioned by Arghadip? Let us know whether this has resolved your problem or not.
    Regards,
    anwar.

  • Help required in triggering concept for sending mails automatically

    I am developing an application in which i had to develop an Auto Responder application. For this application i need to send different mails to different customers automatically on different days. Though i got the concept of using timers and the scheduling process from some of the developers, I think it is not suitable for our application because it is a standalone program and it needs to be executed seperately. I am not much sure of this mail application using timers and scheduling concept.
    So i need a different application where i can be using triggers in database so that it runs embedded in the application.. As per my idea i will be having two variables x and y in the database. X will be a fixed value which contains the no. of days after which a mail has to be sent to the customer.Y is a counter variable which is initialised to 0 and will be incremented daily(For this i wrote a trigger). Once x and y are equal mail should be sent automatically. But the problem is that i need to monitor this application continously. I don't know how to monitor this application. Therefore i request your help in this regard and tell me whether my idea is correct. If it is correct plz tell me how to do it and if possible send me an example.
    Thank you,

    I am developing an application in which i had to develop an Auto Responder application. For this application i need to send different mails to different customers automatically on different days. Though i got the concept of using timers and the scheduling process from some of the developers, I think it is not suitable for our application because it is a standalone program and it needs to be executed seperately. I am not much sure of this mail application using timers and scheduling concept.
    So i need a different application where i can be using triggers in database so that it runs embedded in the application.. As per my idea i will be having two variables x and y in the database. X will be a fixed value which contains the no. of days after which a mail has to be sent to the customer.Y is a counter variable which is initialised to 0 and will be incremented daily(For this i wrote a trigger). Once x and y are equal mail should be sent automatically. But the problem is that i need to monitor this application continously. I don't know how to monitor this application. Therefore i request your help in this regard and tell me whether my idea is correct. If it is correct plz tell me how to do it and if possible send me an example.
    Thank you,

  • Sending mail automatically on date

    Hi,
    I am new to JavaMail. I am having a doubt that is there any method in JAVA that automatically send the mail on a particular day. For e-x, if i set the sentDate as tomorrow, it has to send the mail on tomorrow itself, not the day, when i composed the mail.i.e., composing the mail today and sending it later.

    No, there's no special method to do precisely that. And this question really has nothing to do with JavaMail. If you want a program that does something at a particular time, there are many ways of doing that. Most operating systems have a task scheduler that let you run jobs at specified times or frequencies, and there's a Timer class in Java if you need to code it yourself.

  • Sending mails automatically using trigger concept-Auto Responder

    I am developing an application in which i had to develop an Auto Responder application. For this application i need to send different mails to different customers automatically on different days. Though i got the concept of using timers and the scheduling process from some of the developers, I think it is not suitable for our application because it is a standalone program and it needs to be executed seperately. I am not much sure of this mail application using timers and scheduling concept.
    So i need a different application where i can be using triggers in database so that it runs embedded in the application.. As per my idea i will be having two variables x and y in the database. X will be a fixed value which contains the no. of days after which a mail has to be sent to the customer.Y is a counter variable which is initialised to 0 and will be incremented daily(For this i wrote a trigger). Once x and y are equal mail should be sent automatically. But the problem is that i need to monitor this application continously. I don't know how to monitor this application. Therefore i request your help in this regard and tell me whether my idea is correct. If it is correct plz tell me how to do it and if possible send me an example.
    Thank you,

    Hi,
    if u dont want use a standalone application , U can integrate ur schedular class (which i mentioned earlier ) using quartz ,
    go to this URL
    http://www.opensymphony.com/quartz/
    cheers
    Rajendra Bandi

  • HT1146 I want to send mail automatically (Without user interaction) in iOS6, Is it possible?

    Hi All,
    I want to send a photo through mail in iPhone5, But it is telling that it is not possible to do like this .
    Please guide me , how to handle this issue.
    -Thanks.

    Hi,
    Thanks for your replay.
    Here i need to send a photo with out tap on the "send" button . (So i dont want to see the "Cancel" and "Send" Buttons)
    PLease guide me.
    -Thanks.

  • Sending a mail at regular intervals

    Hi everyone,
    I need to develop an Auto Responder application where we have to send emails or news letters to our clients(customers) automatically at regular intervals(i.e., for every specific no. of days). I request you to help me in this matter so that my application can send mails automatically without any manual involvement.

    I don't know what level of detail you need, but I'll toss the thread scheduler at you...
    The java.util.concurrent.ScheduleExecutorService (returned by Executors) has a method called scheduleAtFixedRate. Given that your email code is in (or called from) a "Runnable", you can pass that Runnable object to scheduleAtFixedRate and the thread scheduler will run it for you ever x-number-of-seconds automatically.
    It's just one piece of the puzzle, but maybe it'll help.

  • BPM Composer refreshing at regular intervals

    I have Installed soa suite 11.1.1.6. When we logged into bpm composer refresh automatically at regular intervals. All the changes which has been made are lost.

    First of all, thanks again for your responses. BTW: I was unaware if I had marked the problem as solved. I don't recall doing so.
    Are you running multiple AV or multiple Firewalls, are they causing the problem.
    '''Well, that may e something to look at, but it is also happening on my other computer which definitely is not running multiple firewalls.'''
    Are you able to identify the process.
    if it is Firefox did you try Safe Mode with all plugins disabled ?
    '''As mentioned above, I have run FFox in Safe Mode with plugins disabled on several occasions: no fix.'''
    what happens if you try Firefox offline
    '''As stated above, if I am off-line, FFox attempts to refresh itself and loses almost all content. If I reconnect the cable, the next "refreshing glitch" brings back all of the webpage content.'''
    what happens if you open only a blank page in Firefox and nothing else (try about:blank )
    '''Opening a blank page (BTW: tried it) is superfluous, because then there would really be no content upon which this problem would manifest itself.'''
    Still searching for a solution! THANKS for the assistance thus far.

  • Sending MAIL on particular date in APEX 4.1

    Hello all,
    I want send mail automatically on the basis of a date column in my table. whenever that date is the current date of the system a mail should be sent to user?
    Please help me with this.

    Hello Pankaj,
    My approach will be as follows:
    <ul><li>
    Create a procedure to notify all the users whose say account expiry date matches system date i.e. sysdate
    procedure send_notification
    as
    begin
    for rec in (select EMP_ID, EMP_MAIL from EMP where ACCT_EXP_DT = SYSDATE)
    loop
         //call procedure to send mail to notify the expiry date
    end loop;
    end;</li><li>
    Now, schedule the above procedure to run every day at say 06:00 PM with the help of DBMS_SCHEDULER
    begin
    -- create a schedule
    -- daily from Monday to Sunday at 18:00 (06:00 p.m.) 
    dbms_scheduler.create_schedule (
    schedule_name    => 'INTERVAL_DAILY_1800', 
    start_date       => trunc(sysdate)+18/24, 
    repeat_interval  => 'FREQ=DAILY; BYDAY=MON,TUE,WED,THU,FRI,SAT,SUN; BYHOUR=18;', 
    comments         => 'Runtime: Every day (Mon-Sun) at 18:00 o''clock');
    -- Call the procedure to send mail 
    dbms_scheduler.create_program (
    program_name    => 'PROG_NOTIFY_ACCNT_EXP', 
    program_type    => 'STORED_PROCEDURE', 
    program_action  => 'SEND_NOTIFICATION', 
    enabled         => true, 
    comments        => 'Procedure to notify account expiry' );
    -- Connect both dbms_scheduler parts by creating the final job 
    dbms_scheduler.create_job (
    job_name       => 'JOB_NOTIFY_ACCNT_EXP', 
    program_name   => 'PROG_NOTIFY_ACCNT_EXP', 
    schedule_name  => 'INTERVAL_DAILY_1800', 
    enabled        => true, 
    auto_drop      => false, 
    comments       => 'Job to notify account expiry');
    end;</li></ul>
    If you are planning to use [url http://docs.oracle.com/cd/E23903_01/doc/doc.41/e21676/apex_mail.htm#CIHDIEJI]APEX_MAIL package to send mail and if you are using packaged procedure to send mail then take following in consideration:
    {message:id=10145867}
    Hope it helps!
    Regards,
    Kiran

  • Is it possible to have Thunderbird send an e-mail automatically when a message with a specific subject is received?

    Is it possible to have Thunderbird send an e-mail automatically when a message with a specific subject is received?
    I basically want to create a rule that will send an automatically crafted form e-mail to the sender when I receive an e-mail with the subject line "New Swimmer". Is this possible?

    Thank you Todd, I was able to get it to work but I do have a few more questions...
    1) When I tested this, at the top of the message, before any of the text I created, this showed up: This is a multi-part message in MIME format. --------------040406040801080102080500 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit
    2) After the signature line, this showed up: --------------040406040801080102080500 Content-Type: image/jpeg Content-Transfer-Encoding: base64 Content-ID: /9j/4AAQSkZJRgABAQEAYABgAAD/4QAiRXhpZgAATU0AKgAAAAgAAQESAAMAAAABAAEAAAAA AAD/2wBDAAIBAQIBAQICAgICAgICAwUDAwMDAwYEBAMFBwYHBwcGBwcICQsJCAgKCAcHCg0K CgsMDAwMBwkODw0MDgsMDAz/2wBDAQICAgMDAwYDAwYMCAcIDAwMDAwMDAwMDAwMDAwMDAwM DAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAz/wAARCAC5ApUDASIAAhEBAxEB/8QA HwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQID AAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6 Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWm p6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/
    (It was actually much longer than that)
    Is there anyway that I can get that to go away? I obviously would prefer a nice, cleanly formatted e-mail to be sent just like I would send if I were creating it on the spot.
    Thanks,
    Evan

  • I want to bcc myself when sending mail from one account but not another. When I check "automatically bcc myself", it bcc's me from both accounts.  Can I set this to work with only one account?

    I have two mail accounts on my Mac.  I want one account to bcc me when I send emails from that account.  I checked "automatically bcc myself" under mail>preferences>composing, but both accounts bcc me when sending mail.  Can I set this to only bcc myself from one specific email account? Thanks.

    It does not make sense that your ssh does not have a dash capital Y (-Y) option. It is in "man ssh", and my 10.6.6 has the -Y option, and I've had a -Y option since at least Tiger (10.4) days.
    My ssh is in /usr/bin/ssh
    I'm not very good at X11 issues, so I'm just throwing ideas out there.
    Does your broken account have a $HOME/.ssh/config file, and if so, what is in it?
    Does the broken account have any $HOME/.x* or $HOME/.X* files that X11 might be reading to configure your X11 behavior differently from the new test account?
    $HOME/.Xauthority
    $HOME/.Xdefaults-<hostname>
    $HOME/.Xresources
    $HOME/.ICEauthority
    $HOME/.keymap.km
    The above are a few names I found looking through "man X"
    While I'm thinking about it, I assume that when going to the server, you are using the exact same user account on the server, so that you have a constant at least at that end.
    Have you tried trashing your
    $HOME/Library/Preferences/org.x.X11.plist
    file, to see if that is affecting the broken account?
    Again, I am just throwing out ideas to see if anything sticks.

  • How to send a mail automatically based on a date from ORACLE database

    Hi,
    I want to send a mail automatically based on a date from ORACLE database.
    Please help me.
    thanks
    --Sara                                                                                                                                                                                                                                   

    programs are available on net to send mail directly from oracle ie procedure s in oracle sending mails

Maybe you are looking for

  • Can I set a recurring event which falls on a specific day

    I would like to set events in my Calendar which fall on specific days of the Week or Month e.g. 2nd Monday of each month; or the last Friday on the month.  I would be obliged if anyone can advise on how this can be done.

  • HOW TO GET A SALES COMMISSION (CASH BASIS) REPORT

    Hello Folks! How can I get a report of COMMISSION (CASH BASIS) using SAP B1? Thanks

  • Good or bad to have buffer gets

    Is it good to have high buffer gets? In the manuals it seems they say it is not good ...

  • All 11g pre-requisites check failed on solaris 10

    During 11g R2 (64 bit) installation on Solaris 10 64 bit, all pre-requisites checks were failed. Like the first one given below: ======================= Physical Memory - This is a prerequisite condition to test whether the system has at least 1GB (1

  • Outlook 2011 on my iMac (10.7.5)

    I delete an email in Outlook(2011) and the email message is resent from the server a few minutes later. This just began happening a few days ago. No installs or additions made to iMac in that period of time. I don't see any options to set to remove f