I am trying to send mass MMS with an image

Does anyone know of a way or an App that will allow me to send mass MMS with images and allow me to create groups. For Iphone 4s.
I have over 2000 contacts, and i can't seem to find an App for group messaging capable of adding images.
Any help is greatly appreciate it.
Angel

Use a utility such as Graphic Converter to  change the image to a jpeg using options to reduce the size of the converted image.

Similar Messages

  • Send HTML mail with an image

    Hi there,
    I'm trying to send html mail with an image. I'm able to see the image but in another section, at the very bottom of my message. Is it possible to display the image in the main part of my message ?
    Here my code :
    MimeMultipart multi = new MimeMultipart();
    BodyPart messageBodyPart = new MimeBodyPart();
    String htmlText = <H1>Test</H1><img src=\"cid:image\">";
    messageBodyPart.setContent(htmlText, "text/html");
    multi.addBodyPart(messageBodyPart);
    MimeBodyPart imagePart = new MimeBodyPart();
    DataSource fds = new FileDataSource("C:\\Resources\\Templates\\logo.jpg");
    imagePart.setFileName( "geologo.jpg" );
    imagePart.setDataHandler(new DataHandler(fds));
    imagePart.setHeader("Content-ID","<image>");     
    multi.addBodyPart(imagePart);
    msg.setContent(multi);
    Transport.send(msg);

    How many different e-mail clients have you tested that with?

  • Hi I just got a new macbook pro i7 processor and i am trying to send a email with  iPhoto and it comes back with The Email sever didn't recognise your username /password combination I'm with btyahoo  thats my I S P

    hi i just got a apple macbook pro on sat... it is the i7 processor 13inch.. the thing is i have been trying to send a picture with iphoto but it just comes back with the sever didn't recognise my Email/password combination

    Go to the Mac App Store main page and click on Support under Quick Links.
    (82704)

  • Hi, this morning I tried to send an email with several photo attachments about 32 megs in JPEG formmat. when I sent them the wheel just went round

    Hi this morning I tried to send an email with 4 Jpegs photos about 32 meg in size.  Hit the send button and it would not send just went round and round for 30 min.  Turned off the computer and restartednow I can't access mail on the computer and when in mail mode the quit mail button is greyed out so I can't quit and restart the mail program.  My icon shows no mail on the dock yet I know I have 80  plus emails to wade through.  Using 2008 MacBook Pro with version 10.6.8. Any help would be appreciated?  Looked through the help screens with no luck.  Thanks Doug.

    Thanks Sig for your input.  Yes my ISP says about 27 meg but didn't know this, prior to sending the email.  How do I break up the email.  Two, when I do break up the email message will it stop the sent message wheel from going round & round, has been doing this now for 3 hours.  [email protected]

  • Cannot send an MMS with Samsung Galaxy III

    Highly frustrating.
    I have turned on mobile data, turned on wi-fi, restarted it and it still doesn't want to send. The send circle just keeps going around and around, for hours! I have 2GB worth of data so it shouldn't be a problem. Can anyone tell me how to make it work because I really have no desire to drive up to Verizon, don't have the time. The phone is less than a week old. >.<

    No luck..>.<
    Perhaps I was doing it wrong. I took out the battery and held down the power button for 10 seconds. Then figuring I read it wrong, I took out the battery, let it sit for 30 seconds, put it back in and held the power button. Just powered on like usual. I really want to be able to send picture messages...>.<
    Date: Mon, 15 Oct 2012 23:18:46 -0600
    From: [email protected]
    To:  (removed personal email address as per Verizon Wireless Terms of Service)
    Subject: Re: Cannot send an MMS with Samsung Galaxy III - Re: Cannot send an MMS with Samsung Galaxy III
                                                                                    Re: Cannot send an MMS with Samsung Galaxy III
        created by B33 in Samsung Galaxy S III - View the full discussion
    Have you Pulled the Battery out and performed a Soft Rest?  by holding the power Button Down while the Battery is out..
    Reply to this message by replying to this email -or- go to the message on Verizon Wireless Community
    Start a new discussion in Samsung Galaxy S III by email or at Verizon Wireless Community
    (deleted personal/private information)
    Message was edited by: Verizon Moderator (M)

  • Sending an email with an image attachment

    Hello
    Basicly I want to send an email with an image as attachment.
    The image is taken by the user in the same app.
    It is an android app
    This is the code i've got so far.
    http://pastebin.com/wVDZsgHx
    can anyone help me please
    I've found out that you have to do it server side with php, but I have no idea how to begin with it.

    Hmmm, Permissions are messed up somewhere!?
    Can you open to pic say in Preview, select All, Copy, 7 Paste into Mail?

  • How do I get phone #'s to come up instead of email addresses when trying to send a MMS?

    I just got my Galaxy S4 2 days ago and was trying to send a picture from my gallery as a text message to a friend.  I know I can start from messaging, and then attach the picture, but I was already in the picture, so clicked on the messaging icon from the picture, and when I started typing my friend's name, it only brought up her email address, not her phone #.  I didn't want to email her, I wanted to send it to her phone as a text message.  The only way I could do this was to start typing her phone #, instead of her name.  I don't know a lot of people's phone #'s by heart, so I don't understand why it isn't bringing up phone #'s when I start to type the person's name?  I had the Droid Razr before, and that's how I always sent pictures.  When I started typing a name it would bring up phone #'s and email addresses to choose from.  If anyone knows how to change this, I would love to know how!

    Try this:
    Click on the Contacts icon
    Select the Menu key
    Select Settings
    If the Only contacts with phones is checked, uncheck it

  • Trying to Send Mass Email from my .Mac email account...

    Hi,
    I am trying to send a mass email to customers at our retail store. For some reason, it says I cannot do it! I actually even narrowed the customer list down to 25, and it still will not send... Is there something I can change in the preference list to make this happen?
    Thanks so much

    There is no preference list for this. Any controls would be server-side, implemented by Apple to prevent spammers using .Mac for hawking their wares.
    As such, there's not much you can do other than send multiple individual messages or run your own mail server.

  • Send HTML Email with Embedded Images and CSS

    Hi All,
    I have a html page. I want to send that html page(not with attachment) with all images and css. i search and try but I cant find a good solution. can any one help... plz..........
    Thank You.....

    If you want to send the html page and have it
    reference the images and css files on your web
    site, that's pretty easy. Just create a message
    with text/html content that is your html page.
    If you want to include all the images and css files
    in your message along with the html page, you'll
    need to create a multipart/related message and
    you'll need to change all the html to reference the
    images and css files using "cid:" references.

  • Trying to create a surface  with multiple images with mouse events

    novice programmer (for a applet program)
    hi trying to create a surface i.e jpanel, canvas, that allows multiple images to be created.
    Each object is to contain a image(icon) and a name associated with that particular image. Then each image+label has a mouse event that allows the item to be dragged around the screen.
    I have tried creating own class that contains a image and string but I having problems.
    I know i can create a labels with icons but having major problems adding mouse events to allow each newly created label object to moved by the users mouse?
    if any one has any tips of how to acheive this it would be much appreciated. Thanks in advance.
    fraser.

    This should set you on the right track:- import java.awt.*;
        import java.awt.event.*;
        import javax.swing.*;
        public class DragTwoSquares extends JApplet implements MouseListener, MouseMotionListener {  
           int x1, y1;   // Coords of top-left corner of the red square.
           int x2, y2;   // Coords of top-left corner of the blue square.
           /* Some variables used during dragging */
           boolean dragging;      // Set to true when a drag is in progress.
           boolean dragRedSquare; // True if red square is being dragged, false                              //    if blue square is being dragged.                            
           int offsetX, offsetY;  // Offset of mouse-click coordinates from
                                  //   top-left corner of the square that was                           //   clicked.
           JPanel drawSurface;    // This is the panel on which the actual
                                  // drawing is done.  It is used as the
                                  // content pane of the applet.  It actually                      // belongs to an anonymous class which is
                                  // defined in place in the init() method.
            public void init() {
                 // Initialize the applet by putting the squares in a
                 // starting position and creating the drawing surface
                 // and installing it as the content pane of the applet.
              x1 = 10;  // Set up initial positions of the squares.
              y1 = 10;
              x2 = 50;
              y2 = 10;
              drawSurface = new JPanel() {
                        // This anonymous inner class defines the drawing
                        // surface for the applet.
                    public void paintComponent(Graphics g) {
                           // Draw the two squares and a black frame
                           // around the panel.
                       super.paintComponent(g);  // Fill with background color.
                       g.setColor(Color.red);
                       g.fillRect(x1, y1, 30, 30);
                       g.setColor(Color.blue);
                       g.fillRect(x2, y2, 30, 30);
                       g.setColor(Color.black);
                       g.drawRect(0,0,getSize().width-1,getSize().height-1);
              drawSurface.setBackground(Color.white);
              drawSurface.addMouseListener(this);
              drawSurface.addMouseMotionListener(this);
              setContentPane(drawSurface);
           } // end init();
           public void mousePressed(MouseEvent evt) {
                  // Respond when the user presses the mouse on the panel.
                  // Check which square the user clicked, if any, and start
                  // dragging that square.
              if (dragging)  // Exit if a drag is already in progress.
                 return;           
              int x = evt.getX();  // Location where user clicked.
              int y = evt.getY();        
              if (x >= x2 && x < x2+30 && y >= y2 && y < y2+30) {
                     // It's the blue square (which should be checked first,
                     // since it's in front of the red square.)
                 dragging = true;
                 dragRedSquare = false;
                 offsetX = x - x2;  // Distance from corner of square to (x,y).
                 offsetY = y - y2;
              else if (x >= x1 && x < x1+30 && y >= y1 && y < y1+30) {
                     // It's the red square.
                 dragging = true;
                 dragRedSquare = true;
                 offsetX = x - x1;  // Distance from corner of square to (x,y).
                 offsetY = y - y1;
           public void mouseReleased(MouseEvent evt) {
                  // Dragging stops when user releases the mouse button.
               dragging = false;
           public void mouseDragged(MouseEvent evt) {
                   // Respond when the user drags the mouse.  If a square is
                   // not being dragged, then exit. Otherwise, change the position
                   // of the square that is being dragged to match the position
                   // of the mouse.  Note that the corner of the square is placed
                   // in the same position with respect to the mouse that it had
                   // when the user started dragging it.
               if (dragging == false)
                 return;
               int x = evt.getX();
               int y = evt.getY();
               if (dragRedSquare) {  // Move the red square.
                  x1 = x - offsetX;
                  y1 = y - offsetY;
               else {   // Move the blue square.
                  x2 = x - offsetX;
                  y2 = y - offsetY;
               drawSurface.repaint();
           public void mouseMoved(MouseEvent evt) { }
           public void mouseClicked(MouseEvent evt) { }
           public void mouseEntered(MouseEvent evt) { }
           public void mouseExited(MouseEvent evt) { }  
        } // end class

  • Couldn't send/receive MMS with Net10 kit

    Dear,
    I bought an activation kit Net10-40$ for 30days since 25.june, but during my period I couldn't use MMS ( sending or receiving ). AND now it's out of service.
    Please advise what's the reason? Was that kit included MMS service or not? Or we have to contact AT&T for active that Service at t he at time?
    Looking forward to hearing your feedback.
    P.s: I'm using Verizon phone S6 edge, and will use it overseas. So I may have to use another sI'm card of other carrier. Will it workable there?
    Thanks

    Hi there! @jessynguyenORG Thanks for posting your concerns. I’m sorry to hear your Net 10 service did not work. For assistance with this, please contact Net 10 directly at 1-877-836-2368.
    Thanks!
    Charise

  • Hi there can anyone help as i am unable to contact Apple for support with my printer which will not print after recent software update? this is the email i tried to send to apple with no success, can anyone help please.......Dear Apple, I'm pulling my hai

    Hi there,
    Can anyone out there help, after a recent Apple software update my Epson Stylus Photo RX640 will no longer print, every other aspect of the printer works fine including the scanner but it just will not print, I sent an email to apple but all i got was an automated reply directing me to their support page, the email i sent is below this explains in full what the problem is & what i have done to try & fix this problem.
    Dear Apple,
    I'm pulling my hair out after a recent software update from apple, since this update my Epson Stylus Photo RX640 will not print, every other function of the printer including the scanner works fine,
    Please see attached file of the error message coming up in the print queue.
    I have spent days trying to fix this, i have been onto Epsons website & followed their resolution for this error message to no avail, after contacting them again with the results i got an email back saying : In response to your email, the RX640 will use an inbox or gutenprint driver on Mac OS X 10.6.8, it is not compatible with an Epson driver.
    I have also tried re-installing drivers from original Discs for the printer but it still will not print, obviously this error has been caused by Apple's latest software update, when are Apple going to fix this problem? i need my printer working ASAP.
    Regards
    Brian
    PS i obviously can't attach the error message so here it is:    Error:/Library/Printer/Epson/inkjetprinter 2/filter/rastertoescpll.app/contents/mac os/rastertoescpll/failed
    Thank You all in advance
    Regards
    Brian

    It is hardly Apple's fault that Epson can't/won't update their driver, but at least Epson suggest that you use the Gutenprint driver, which in any case is far better that what Epson offer.
    You can get it here:
    http://gimp-print.sourceforge.net/
    You can download the latest version from here:
    http://sourceforge.net/projects/gimp-print/
    Have you downloaded the recent Apple update to Epson drivers?
    http://support.apple.com/kb/DL1398

  • Compressor crash when trying to send a task with watermark

    Hello,
    I use Compressor without problem except when i try to add a watermark on my movie. It crash without sending the job.
    My watermark is a TGA file with an alpha channel.
    I haven't find any solution until now...
    Thank you for your help.

    I have the same problem,
    Where can i find the crash log ?

  • Upload Error when trying to send large files with Adobe Send

    I am a paid subscriber of Adobe Send and should be able to send up to 2GB of files. I am not able to send even 1GB. I have compressed all files into a .zip folder.
    I then tried splitting the files into 2 separate .zip folders at about 500MB each, and still got the upload error again after waiting for the entire file to upload. A lot of wasted time now.
    It's not reasonable for me to send all of the files piecemeal to my client.
    What is going on?
    Thank You!
    Dave

    Here are some screenshots:

  • Safari Quits When Trying to Send an Email With Attachments

    I use gmail to send attachments. Now whenever i try to send an message that has an attachment, it quits unexpectedly. This is the only problem i have with Safari. I created another account to check if the problem is in the account itself but Safari didn't exist in the new account (it shows a question mark as an icon for Safari).
    Thanx

    Naif MG wrote:
    I created another account to check if the problem is in the account itself but Safari didn't exist in the new account (it shows a question mark as an icon for Safari).
    If Safari is in its default location in the Applications folder, this shouldn't happen. I'm guessing you moved it from that location, either into another folder or a subfolder of the Applications folder. Move it back into the Applications folder and this part of the problem should be solved.

Maybe you are looking for

  • Read table inside a loop

    Hi, I would like to seek advice on this. I have 2 internal table as below. The problem is although i have the same set of data in both internal table but why sy-subrc still returns 4. I found out anln2 map to different ones. Why read table not able t

  • Portable external hard drive (500gb) not recognized on computer

    I have been using a portable hard drive to backup all my files for some time. I plug it in now and the led light briefly flashes and then , nothing. Computer does not recognize it anymore. I really need these files! any suggestions?

  • Is it possible to call a windows batch file from PL/SQL

    Hi gurus, Would require your help.Is it possible to call a windows batch file from PL/SQL??If yes can you give an example for the same or any workaround for the same. Regards Vijay

  • Home Sharing Icon Dissapearing

    I log into home sharing on my mac and my windows pc and then when I click done the home sharing symbol goes away and i cannot view or open my shared libraries, I've already checked the network, the home sharing button in preferences and everything. C

  • Word:mac 2008 spell check

    Every time I write specifically spelled words correctly in uk english it underlines it in red, indicating I should spell it the us way. Anyone know how to change the spell check to uk english only? Thanks