Sending Multiple Fax/E-mail Recipients at once

I'm a RightFax integrator and am trying to assist a customer that would like to integrate RightFax with Oracle Purchasing.
What we would like to do is provide the user with the ability to transmit one purchase order to multiple fax recipients and/or e-mail recipients at once from the Oracle interface. It was initially thought that this might be able to be accomplished with the RightFax integration module but RightFax only processes the data stream from Oracle and makes no change to its functionality. If Oracle can only fax to one recipient at a time then so can RightFax.
Does anyone know if there's a way to customize Oracle to allow sending to multiple recipients at once or of another add-in product that might offer this functionality?
Please feel free to post replies here or send directly to me at [email protected]
Thanks in advance for any assistance.
Mike Bishop

See the response to your other post

Similar Messages

  • Sending multiple photos in mail

    I read an old post that said it was not possible to send multiple photos in mail from the iPhone. Well, I have done it, but in a rather clunky fashion.
    I first made a new message to send, but left the To: address empty.
    I then went to the camera roll and selected one photo by holding my finger on it for a short time, long enough for the "Copy" option to pop up. I copied it.
    I returned to mail and pasted that photo into the message area.
    Returned to the camera roll and copied another photo
    Returned to the mail, entered 2 returns after the existing photo and pasted again.
    I then entered the recipients address. (For some reason the paste option would not appear if I entered the To: field first)
    This way you don't get the opportunity to make the photo sizes medium or small, but if the message is too large you are given the option of do that. It minimizes just enough of the photos to pass the size test, but it did work.
    This is clunky. Does anyone know of a better way to do it?
    Thanks, John Shanks

    You can select more than one photo at a time followed by selecting copy if you have aleady started composing a message and if not, you can select more than one at a time followed by selecting Share instead which will create a new email with each photo added as an attachment.

  • Sending multiple faxes to multiple recipients

    I have to fax permit applications to juridictions for processing. Sometimes I have four or five faxes to send out to the different recepients. I need an all-in-one that will scan outgoing faxes to memory while one fax is sending, to be sent when the first fax is complete. The fax on the all-in-one I have now will not accept another fax input until the first fax has completed sending. I need to be able to just scan them all in to the different recipients and walk away. 

    @mph710, When you send a regular fax through the printer, do the recipient receive multiple faxes?
    Perform a hard reset on the printer. Unplug the power cord from the back. Leave it out for 30 seconds and plug it back in. 
    Also, try to unplug the phone cord. Check to see if you have a (2-wire) phone cord. 
    **Click the KUDOS star on the left to say 'Thanks'**
    Please mark a reply "ACCEPTED AS SOLUTION" if it solved your problem, so others can find it.

  • Sending Multiple faxes!

    I have an HP OfficeJet Pro 8600. We frequently use it to send faxes directly from multiple software programs by choosing print and selecting the fax option from available printers. A number of times the fax machine has sent hundreds of copies of the same fax with not clear explanation. Has anyone else had the same problem?  To me it seems like a fax driver problem.  The faxes only seem to stop after turning off the computer and fax machine.

    @mph710, When you send a regular fax through the printer, do the recipient receive multiple faxes?
    Perform a hard reset on the printer. Unplug the power cord from the back. Leave it out for 30 seconds and plug it back in. 
    Also, try to unplug the phone cord. Check to see if you have a (2-wire) phone cord. 
    **Click the KUDOS star on the left to say 'Thanks'**
    Please mark a reply "ACCEPTED AS SOLUTION" if it solved your problem, so others can find it.

  • How to send multiple attachments thru mail?

    I haven't been able to figure out how from the mail application send docs, worksheets etc as attachment. Also how to attach multiple docs in the mail. Looking for help on this.
    Sparashar

    You need to start in the app that contains the files that you want to send as attachments and use that app's functionality to select and attach files to an email, and not start in the Mail app e.g. the GoodReader app supports multiple document types (word and excel, read only, PDFs, text files, pictures) and allows you to select one or more of them and attach/switch with them to an email.
    In the Mail app itself on iOS 6 you can now press and hold the body of the email and select photos from the Photos app to attach to it.

  • How to send multiple Recipients using the mail.jar and activation.jar

    hi!
    could somebody help me. how do i send multiple Recipient using mail.jar. when i would input 2email address in to Recipient
    (example: [email protected], [email protected])
    i get a DEBUG: setDebug: JavaMail version 1.3.2
    but if i send a single email it just works properly.
    heres my code
    import java.io.*;
    import java.util.*;
    import javax.mail.*;
    import javax.mail.event.*;
    import javax.mail.internet.*;
    public class SendMail
              public SendMail(String to, String from, String subject, String body)
              //public SendMail(String to)
                   String message_recip = to;
                   String message_subject = subject;
                   String message_cc = "";
                   String message_body = body;
                   //The JavaMail session object
                   Session session;
                   //The JavaMail message object
                   Message mesg;
                   // Pass info to the mail server as a Properties, since JavaMail (wisely) allows room for LOTS of properties...
                   Properties props = new Properties( );
                   // LAN must define the local SMTP server as "mailhost" to be able to send mail...
                   //props.put("mail.smtp.host","true");
                   props.put("mail.smtp.host", "mailhost");
                   // Create the Session object
                   session = Session.getDefaultInstance(props, null);
                   session.setDebug(true);
                   try
                        // create a message
                        mesg = new MimeMessage(session);
                        // From Address - this should come from a Properties...
                        mesg.setFrom(new InternetAddress(from));
                        // TO Address
                        InternetAddress toAddress = new InternetAddress(message_recip);
                        mesg.addRecipient(Message.RecipientType.TO, toAddress);
                        // CC Address
                        InternetAddress ccAddress = new InternetAddress(message_cc);
                        mesg.addRecipient(Message.RecipientType.CC, ccAddress);
                        // The Subject
                        mesg.setSubject(message_subject);
                        // Now the message body.
                        mesg.setText(message_body);
                        // XXX I18N: use setText(msgText.getText( ), charset)
                        // Finally, send the message!
                        Transport.send(mesg);
                   }//end of try
                   catch (MessagingException ex)
                        while ((ex = (MessagingException)ex.getNextException( )) != null)
                             ex.printStackTrace( );
                        }//end of while
              }//end of catch
         }//end of SendMail
    public static void main(String[] args)
              //String t = "[email protected], [email protected]"; - this I think causes error
    String t = "[email protected]";
              String f = "[email protected]";
              String s = "Hello World";
              String b = "the quick brown fox jumps over the lazy dog";
              SendMail sm = new SendMail(t,f,s,b);     
         }//end of main
    }//end of class
    could someone please help me im stuck-up with this. thanx!

    i need it ASAP
    i am a beginner in java and jsp
    Need to knw how can I parse the addresss field
    Below
    is the code
    <code>
    package
    public class EMailBean {
    private String smtp,username,password,from,bcc,subject,body,attachments,cc;
         /*setter*/
         public void setSmtp(String str){this.smtp=str;}
         public void setUsername(String str){this.username=str;}
         public void setPassword(String str){this.password=str;}
         public void setFrom(String str){this.from=str;}
         public void setTo(String str){this.to=str;}
         public void setCc(String str){this.cc=str;}
         public void setBcc(String str){this.bcc=str;}
         public void setSubject(String str){this.subject=str;}
         public void setBody(String str){this.body=str;}
         public void setAttachments(String str){this.attachments=str;}
                                  /*getter*/
         public String getSmtp( ){return this.smtp;}
         public String getUsername( ){return this.username;}
         public String getPassword( ){return this.password;}
         public String getFrom( ){return this.from;}
         public String getTo( ){return this.to;}
         public String getCc( ){return this.cc;}     
         public String getBcc( ){return this.bcc;}
         public String getSubject( ){return this.subject;}
         public String getBody( ){return this.body;}
    public String getAttachments( ){return this.attachments;}
    </code>
    Session session = Session.getDefaultInstance(props, null);
    session.setDebug(true);
    try {
    MimeMessage msg = new MimeMessage(session);
    msg.setFrom(new InternetAddress(mail.getFrom()));
                                  msg.addRecipients(Message.RecipientType.TO, InternetAddress.parse(to, false));
                                  msg.addRecipient(Message.RecipientType.TO,new InternetAddress(mail.getTo()));
                             msg.addRecipient(Message.RecipientType.CC, new InternetAddress(mail.getCc()));
                                  msg.addRecipient(Message.RecipientType.CC, new InternetAddress("[email protected]"));
    msg.setSubject(mail.getSubject());
    // Create the message part
    BodyPart messageBodyPart = new MimeBodyPart();
    // Fill the message
    messageBodyPart.setText(mail.getBody());
    Multipart multipart = new MimeMultipart();
    multipart.addBodyPart(messageBodyPart);
    // Part two is attachment
    messageBodyPart = new MimeBodyPart();
    DataSource source = new FileDataSource(mail.getAttachments());
    messageBodyPart.setDataHandler(new DataHandler(source));
    messageBodyPart.setFileName(source.getName());
    multipart.addBodyPart(messageBodyPart);
    msg.setContent(multipart);
    msg.setSentDate(new Date());
    Transport t = session.getTransport("smtp");
    try {
    t.connect(mail.getUsername(), mail.getPassword());
    t.sendMessage(msg, msg.getAllRecipients());
    } finally {
    t.close();
    result = result + "<FONT SIZE='4' COLOR='blue'><B>Success!</B>"+"<FONT SIZE='4' COLOR='black'> "+"<HR><FONT color='green'><B>Mail was successfully sent to </B></FONT>: "+mail.getTo()+"<BR>";
    if (!("".equals(mail.getCc())))
    result = result +"<FONT color='green'><B>CCed To </B></FONT>: "+mail.getCc()+"<BR>";
    if (!("".equals(mail.getBcc())))
    result = result +"<FONT color='green'><B>BCCed To </B></FONT>: "+mail.getBcc() ;
    result = result+"<BR><HR>";
    } catch (MessagingException mex) {
    result = result + "<FONT SIZE='4' COLOR='blue'> <B>Error : </B><BR><HR> "+"<FONT SIZE='3' COLOR='black'>"+mex.toString()+"<BR><HR>";
    } catch (Exception e) {
    result = result + "<FONT SIZE='4' COLOR='blue'> <B>Error : </B><BR><HR> "+"<FONT SIZE='3' COLOR='black'>"+e.toString()+"<BR><HR>";
    e.printStackTrace();
    finally {
    return result;
    }

  • Sending multiple attachments in one e-mail

    Is there a way to send multiple spreadsheets via mail without it opening a new e-mail message everytime? For example, If I create a spreadsheet and choose "Share", "Send via Mail", "PDF" - It pops up a new e-mail with the pdf already attached. That's great. However, I want to continue to add spreadsheets to the same e-mail. If I open another spreadsheet and do the same thing the attachment is in a new blank e-mail instead of being added to the e-mail that is already opened. Is there some type of preference setting that can help with this?

    Further thoughts:
    If by "spreadsheet" you mean "sheet", you can print and choose "Open PDF in Preview" (instead of printing to a printer) then drag the sheets/pages you want into an email message. You will want to select "all sheets" in the print window. You will want to open the Preview sidebar.
    If by "spreadsheet" you mean "document", printing to "Open PDF in Preview" creates new preview windows for me so it doesn't make the job any easier than dragging the PDFs from each email into one.
    If by "spreadsheet" you mean "table", you can copy/paste tables into an email, at least in Apple's Mail application. Best if the tables do not have the "name" checkbox checked or if the name is left justified. The names end up justified with respect to the email versus the table. You can also copy/paste multiple items from a sheet at once.

  • How can we send multiple attachments in a mail from iPad 2

    Hi,
    I am using a ipad2. I want to know how we can send multiple attachments through mail from iPad. I did not find any option of doing this. Is there a way to do this.
    Regards,
    Satyabrat

    You can't do it natively on the iPad (unless you just want to send up to 5 photos from the Photos app). I use the GoodReader app which supports quite a few document/file types (e.g. PDF, Excel, Word, pictures), and from that I can select multiple files (including different types) and attach them to the same email.

  • Since upgrading to Mavericks my mail will only allow me to choose one recipient at a time unlike previous OSX which would allow me to choose multiple recipients at once.

    Since upgrading to Mavericks my mail will only allow me to choose one recipient at a time unlike previous OSX which would allow me to choose multiple recipients at once.

    Open a message-editing window and select
    View ▹ Customize Toolbar...
    from the menu bar. From the sheet that opens, drag the button labeled Address upward (not downward) into the toolbar if it's not already there, then click Done.
    Click the button to see a list of your contacts. You can make multiple selections.

  • Faxing with Tiger.  sending same fax to multiple recipients

    I have a G4 titanium notebook and just upgraded to Tiger. Under Panther, when I sent faxes, I would be able to just type the first few letters and the discription and fax number would come up and it would fax without problems. Now when I do this under Tiger, the fax number and the description will come up, but it will not fax unless I remove all of the letters from the fax number. Also, I often have to send the same fax to multiple numbers at the same time. Under Panther, it was a snap, just put all the number in the same line separated by a comma and the fax would be sent to as many numbers as possible. Under Tiger, it will only send to the first number listed. Why did they make the fax program less functional on the upgraded OS?

    Are you using a Fax program within Tiger? I have been using FaxStfPro made by
    Smith Micro, and now with Tiger, OS10.4.8 operating with DSL, I find i cannot send a fax unless I get a separate phone line with filter to connect to my Power Book G4. That is not an easy solution here because of wiring distance.
    If a Fax program existed within Tiger that could be used even with DSL, that would solve my problem. What is Mac Fax? I have not heard of it before,
    Any guidance you might provide would be greatly appreciated.
    Randolph McCreight

  • How do you add multiple addresses from Mail to Address Book at once?

    So let's say I receive an email to myself and 50 other recipients and I want to add those other recipients to my address book. Do I seriously have to go through and select "Add to Address Book" on each of the fifty contacts?! Tried doing a shift click which will highlight all contacts, but then when you right-click to get the "add to address book option" it only displays one single contact at the top of the menu. I know there is a way to add select and add multiple contacts to address book at once because I figured out how to do it once a long time ago and I still have the 67 card group to prove it. I just can't remember how I did it!!! Didn't think it'd be such a hard feature to re-discover. Would love some help on this! Thanks.
    David

    there is no built-in way to do this. the only way i know is by using Mail Scripts
    http://homepage.mac.com/aamann/Mail_Scripts.html
    it has a script "Add addresses" that does just what you want.

  • Mail: How do I send multiple contacts an email

    Used to be that you could click multiple contacts while holding down the Command key so they were all selected and appeared in the "TO" field of an email or Message. It seems that with Yosemite I have to select each recipient separately, then go back to the contacts list. I figure I'm doing something wrong (probably real obvious to all but me). I also want to know how I can send to a "GROUP" of recipients so that (a) all the cards in that group receive the email, and (b) none of the email addresses or recipients are visible (e.g., "Some Friends", or "Family" is all they see in the "To" field.  Thanks lots.

    Create a new group in your Contacts with those recipients.  In Mail type the name of the group into the BCC field and hit the Tab key.
    By using the BBC field the recipients will only see their name at the top and in the To field will be "Undisclosed recipients"  in the To field when they receive it.

  • Send multiple files in separate e-mails

    Hello!
    I want to send multiple files from finder in separate e-mails, but I can't find a way to do this in Mavericks and Apple mail (or gmail). In windows XP it was simple as Send to/Mail recipient. Is there an option similar to this is MacOSX?
    Thnx,
    Gas

    #Eric
    Of course that would work, but it is tiresome to do for every file (open-attach-write subject-insert recipients-send), and that is exactly what I would like to avoid.
    #Csound
    My Mail works fine, but I use gmail webmail usually. Now that I changed the preferences, so Mail is the default it works with the shortcut menu :-)
    But, when I select more files, it attaches them to one e-mail, and not per/file. Is it possible to split them to different mails so they can be sent individually?
    Thanks.

  • Sending multiple photos over E-mail

    I can't figure out how to send multiple photos from my iPhone 4 in an e-mail message like I can in a text message.  Does anyone know how to do this?

    Tap Photos > Camera Roll (or wherever the photos are stored) and then tap Edit, then select up to any 5 at once and tap Share > Email.
    You can only send any 5 at a time probably due to the high quality of the photos, this makes the files larger.

  • Can I send multiple photos on one e mail.

    As the title says. Is it possible to send multiple photos on one e mail and if so how?
    Many thanks.

    There isn't an option for it.

Maybe you are looking for

  • Canon digital camera utilities

    I've just got a new laptop with OS X 10.6 on which replaces my old one with OS X 10.4. I need to install the software for the Canon digital cameras but can only find 'updater' downloads for 10.6 which rely on you having the original installed on your

  • 'The page cannot be displayed' when I use IE to open Web Dynpro demo

    In the package 'SWDP_DEMO_TUTORIALS' . Folder Web Dynpro Applicat. -> WDT_ALV ==> URL = 'http://abcdev.:8000/sap/bc/webdynpro/sap/wdt_alv' then Right click and choose Test. IE is open but 'The page cannot be displayed'. (http://abcdev.:8000/sap/bc/we

  • Can't upgrade under Windows 2000

    I'm trying to upgrade my existing AIR 1.0 installation, in response to a Secunia PSI security threat warning.  When I try, I get the message "The procedure entry point GetAdaptersAddresses could not be located in the dynamic link library IPHLPAPI.DLL

  • .MOV to MPEG2

    I've converted FCP .mov files to MPEG2 using the Program Stream setting 100 times with no problem. Recently though, I CAN NOT get a workable conversion (video stops and starts, interlacing, motion blur, etc). It's a :30 spot for broadcast tv. Any sug

  • How to retain the button over state while scrolling over a Pop-up Menu

    Are there updated instruction for Fireworks 8? http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_15926&sliceId=1