SMS being sent as email

I have two 4S' - mine and my wifes.  If we both have iMessage turned on, I can send her a message normally.  If I turn off iMessage (simulate network issue) - my SMS is sent as an email from my [email protected]  I sent a text message to a friend who has an iPhone 4 running 4.3 and it goes through as a normal text.
Is this an Apple iMessage server issue?  Any settings I'm missing.

I'm having the same issue.  Any one know the cause of this behavior?

Similar Messages

  • Why are my messages being sent through email rather than iMessage?

    Why are my messages being sent as email rather than iMessage?

    Not being sent as email - shown as being sent from an email address because you have selected to start new iMessage conversations from your Apple ID email address on your iPhone.
    When registering an iPhone with iMessage, the phone number along with your Apple ID email address is registered with it.
    Go to Settings > Messages > Send & Receive > Start New Conversations From - select your iPhone's phone number.

  • Forgot apple id security question answers - reset email is not being sent to email addresses

    forgot apple id security question answers - reset email is not being sent to email addresses

    Hi there,
    Why dont you just change your Apple ID (your email)? Make a new Apple ID and do the security questions that you will remember. Also, make sure you write down all the info with your Apple ID for later refrence.
    To create a new Apple ID, follow the easy steps below:
    Settings > Itunes and App stores > Tap "Apple ID: (YOUR APPLE ID IS HERE!)" > Tap "Sign Out" > Tap "Create New Aple ID"

  • Imessages being sent using email address how do I correct

    I recently reactivated my iPhone 6 and now my imessages are being sent via my email address not my phone # how do I correct this?

    settings - imessage - send/receive - make sure phone is number is checked and grey out.
    if no sign out of imessage and sign back in.  or remove your apple id.

  • Text Messages are being sent as email only to another vzw user. Not able to send text to a mobile device?

    I am on a Galaxy S4. Sending text as usually, recipient gets an email of the text. Is is my settings or theirs? What needs to be changed?

    Are you entering their name from your contact list to send the text?  Or typing in their phone number?  The email may be what's being populated by default when you pull their name from the contact list, if that's how they have replied to you previously, or how you sent your last message to them. Try manually typing in their phone number in the To: field and see if it sends as a text or as an email when you do that.

  • Invoice is getting printed instead of being sent in email

    Hi Experts,
    I have an issue where there is a list of customers for which invoice should be sent in an email.
    It should not get printed out.
    I've maintained customer specific condition records for this output type (ZINV) and have kept transmission medium as 5 (External send). But still in invoice, transmission medium is picked as 1 (Print output). This billing type has default value as 1 (Print output). But for these customers, system should have picked up 5 not 1.
    I've checked config. I dont see any problem as per my understanding.
    Would you please advice if I am missing something?
    -Chetan
    Edited by: Chetan Barokar on May 6, 2010 8:25 PM

    Hi,
    Hope the Form and print program are assigned for email comm for the output type in NACE trranscation.
    In the condition records(VV33), the communication strategy must be set to 1(Email only) in the communication tab. Also check the access sequence of condition records and make sure that it is not selecting the wrong sequence. Also please check the output determination procedure.
    If the above setup exist, the please debug the print program and check whether the device value passed to OPEN_FORM is MAIL and also check whether the sender and recipient values are passed.

  • Group messaging issue with messages being sent to email rather than mobile

    Hi,
    I have an iPhone 4s running iOS 6.0.1. I tried to send out a large group message today by opening up messages and clicking on the + button (top right corner) and selecting a number of recipients one by one in the list.
    What I noticed was that when selecting some contacts, I was prompted for a delivery address while other contacts were automatically selected and I couldn't change the delivery path. Unfortunately the phone was automatically sending the messages to the recipients email rather than their mobile phone (I checked my mobile usage records). I couldn't select the recipient in the list and change the delivery method either... I also noticed that the message would change from an sms to mms message automatically because the iphone was automatically choosing an email address to send to. This is really annoying!!! Does anyone know a work around?
    I tried disabling mms messaging in settings-messaging but I would get an error saying:
    Cannot Send Message: MMS Messaging needs to be enabled to send to an email address
    This is incredibly frustrating. Why doesn't the iphone allow you to select the delivery address for each contact rather than automatically selecting an email address? I thought the iphone would be smart enough to select their mobile number since it is a mobile messaging device...
    Any ideas?

    Is there a solution to this issue?

  • PDF File corrupted when being sent by email by tomcat... what's wrong?

    Hi,
    I have been a little frustrated trying tomcat to send a pdf file by email after it have been uploaded to the server.
    First case:
    If i run the same code in windows, it works.
    Second case:
    If i run the same code manually in java in the tomcat linux server it works.
    Third case:
    The problem is when the code is running by tomcat in a jsp page.
    In every situation the email goes to the sender, but in the last one, the reported size of the pdf file is not the same as the first and second case resulting in a pdf corruption. It cannot be opened.
    I am running Tomcat 5.5.17 with jdk 1.5.0.10 in a Redhat Enterprise Linux 4 Server.
    This is the code called by a jsp page.
    package eor;
    import java.util.Date;
    import java.util.Properties;
    import javax.activation.DataHandler;
    import javax.activation.FileDataSource;
    import javax.mail.Authenticator;
    import javax.mail.Message;
    import javax.mail.MessagingException;
    import javax.mail.Multipart;
    import javax.mail.PasswordAuthentication;
    import javax.mail.Session;
    import javax.mail.Transport;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeBodyPart;
    import javax.mail.internet.MimeMessage;
    import javax.mail.internet.MimeMultipart;
    public class SendMailUsingAuthentication {
    private static final String SMTP_AUTH_USER = "user";
    private static final String SMTP_AUTH_PWD = "pass";
    public void sendEmail() {
    String from = "[email protected]";
    String to = "[email protected]";
    String subject = "Sendit from linux ";
    String bodyText = "This is a important message with attachment";
    String filename = "//home//test//HON-SOLMANT28AGO08.pdf";
    Properties properties = new Properties();
    properties.put("mail.smtp.host", "Testmailhost");
    properties.put("mail.smtp.auth", "true");
    properties.put("mail.smtp.port", "25");
    Authenticator auth = new SMTPAuthenticator();
    Session session = Session.getInstance(properties, auth);
    session.setDebug(true);
    try {
    MimeMessage message = new MimeMessage(session);
    message.setFrom(new InternetAddress(from));
    message.setRecipient(Message.RecipientType.TO, new InternetAddress(to));
    message.setSubject(subject);
    message.setSentDate(new Date());
    // Set the email message text.
    MimeBodyPart messagePart = new MimeBodyPart();
    messagePart.setText(bodyText);
    // Set the email attachment file
    MimeBodyPart attachmentPart = new MimeBodyPart();
    FileDataSource fileDataSource = new FileDataSource(filename) {
    @Override
    public String getContentType() {
    return "application/octet-stream";
    attachmentPart.setDataHandler(new DataHandler(fileDataSource));
    attachmentPart.setFileName(filename);
    Multipart multipart = new MimeMultipart();
    multipart.addBodyPart(messagePart);
    multipart.addBodyPart(attachmentPart);
    message.setContent(multipart);
    Transport.send(message);
    } catch (MessagingException e) {
    e.printStackTrace();
    private class SMTPAuthenticator extends javax.mail.Authenticator {
    @Override
    public PasswordAuthentication getPasswordAuthentication() {
    String username = SMTP_AUTH_USER;
    String password = SMTP_AUTH_PWD;
    return new PasswordAuthentication(username, password);
    }I will appreciate your help to solve this situation.
    Regards,

    bshannon wrote:
    Are you sure you're using the Sun implementation of JavaMail on RedHat? Some versions of
    Linux come with the Gnu version of JavaMail included, which might behave differently.
    If you turn on session debugging, what does the protocol trace show?
    Are you sure you're sending the same file in all cases?
    Are you sure the file upload is complete before you send the file?Are you sure you're using the Sun implementation of JavaMail on RedHat?
    Yes I am using JavaMail 1.4 from SUN.
    If you turn on session debugging, what does the protocol trace show?
    Yes. Below you will find the protocol trace.
    Are you sure you're sending the same file in all cases?
    Yes I am sure.
    Are you sure the file upload is complete before you send the file?
    Good point. I will check it out!
    Protocol Trace output:
    Grabando archivo en disco...
    DEBUG: setDebug: JavaMail version 1.4.1
    DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc]
    DEBUG SMTP: useEhlo true, useAuth true
    DEBUG SMTP: useEhlo true, useAuth true
    DEBUG SMTP: trying to connect to host "168.243.220.232", port 25, isSSL false
    220 SMTP IM2 Proxy Server Ready
    DEBUG SMTP: connected to host "168.243.220.232", port: 25
    EHLO web2.enteoperador.org
    250-ESMTP Server Ready
    250-SIZE 0
    250-DSN
    250-AUTH LOGIN
    250-AUTH=LOGIN
    250-STARTTLS
    250 TLS
    DEBUG SMTP: Found extension "SIZE", arg "0"
    DEBUG SMTP: Found extension "DSN", arg ""
    DEBUG SMTP: Found extension "AUTH", arg "LOGIN"
    DEBUG SMTP: Found extension "AUTH=LOGIN", arg ""
    DEBUG SMTP: Found extension "STARTTLS", arg ""
    DEBUG SMTP: Found extension "TLS", arg ""
    DEBUG SMTP: Attempt to authenticate
    AUTH LOGIN
    334 VXNlcm5hbWU6
    c3ZhbGxl
    334 UGFzc3dvcmQ6
    dmFsZXJpYW1pYW1vcg==
    235 Authenticated successfully
    DEBUG SMTP: use8bit false
    MAIL FROM:<[email protected]>
    250 +OK Sender OK
    RCPT TO:<[email protected]>
    250 +OK Recipient OK
    DEBUG SMTP: Verified Addresses
    DEBUG SMTP:   [email protected]
    DATA
    354 Start mail input, end with "<CR><LF>.<CR><LF>"
    Date: Fri, 26 Sep 2008 17:47:18 -0600 (CST)
    From: [email protected]
    To: [email protected]
    Message-ID: <[email protected]>
    Subject: Sendit from linux
    MIME-Version: 1.0
    Content-Type: multipart/mixed;
            boundary="----=_Part_0_28970806.1222472838992"
    ------=_Part_0_28970806.1222472838992
    Content-Type: text/plain; charset=us-ascii
    Content-Transfer-Encoding: 7bit
    This is a important message with attachment
    ------=_Part_0_28970806.1222472838992
    Content-Type: application/octet-stream;
            name="//www//tomcat//upload//oper-hon//HON-SOLMANT28AGO08.pdf"
    Content-Transfer-Encoding: base64
    Content-Disposition: attachment;
            filename="//www//tomcat//upload//oper-hon//HON-SOLMANT28AGO08.pdf"
    JVBERi0xLjANCg0KMSAwIG9iag0KPDwgL1R5cGUgL0NhdGFsb2cgL1BhZ2VzIDIgMCBSID4+DQpl
    bmRvYmoNCg0KMiAwIG9iag0KPDwgL1R5cGUgL1BhZ2VzIC9LaWRzIFsgMyAwIFIgXSAvQ291bnQg
    MSA+Pg0KZW5kb2JqDQoNCjMgMCBvYmoNCjw8IC9UeXBlIC9QYWdlIC9QYXJlbnQgMiAwIFIgL01l
    77+9DC/vv73vv71YYO+/vVsMF20t77+977+9Nkg777+9bitg77+9KO+/ve+/ve+/ve+/ve+/vXw1
    X++/vW8J77+977+9NQknfu+/vQgw77+9TX1177+9YSwS77+9
    ------=_Part_0_28970806.1222472838992--
    250 +OK message queued for delivery.
    QUIT
    221 Service closing transmission channel closing connection

  • ERROR - Auto SMS being sent from my account - Venu...

    Since 20-FEB-2013, I am noticing a lot of SMS has been initiated from my account - VENU059 to Australia based numbers from my skype account.
    This has drained my balance of nearly $20 so far.
    You should credit the money back into my account.

    I think you may need to contact customer service regarding your concern. Just click the link below to see the instructions on how you can get in touch with the Support team ;
    http://community.skype.com/t5/The-Skype-Lounge/How-to-Contact-Skype-Customer-Service/td-p/2056783
    moreover, that issue was also possibly caused by a virus or a similar element.  you can try running a full antivirus scan as a security measure.
    IF YOU FOUND OUR POST USEFUL THEN PLEASE GIVE "KUDOS". IF IT HELPED TO FIX YOUR ISSUE PLEASE MARK IT AS A "SOLUTION" TO HELP OTHERS. THANKS!
    ALTERNATIVE SKYPE DOWNLOAD LINKS | HOW TO RECORD SKYPE VIDEO CALLS | HOW TO HANDLE SUSPICIOS CALLS AND MESSAGES
    SEE MORE TIPS, TRICKS, TUTORIALS AND UPDATES in
    | skypefordummies.blogspot.com | 

  • Sms being sent via iMessage to none iOS phone

    Hi,
    My other half never gets my texts as my iphone is sending them via iMessage to here 80's Nokia.
    How do I get my iPhone to realise that it should be sending them via sms?
    I have seen lots of posts with the opposite problem.
    Cheers
    David

    Yep, it can handle SMS.
    It might not litterally be an 80's phone, but I guess I didn't intent for the comment to taken litterally.

  • Original Picture not being sent in email!

    Good Morning all, So here's my question and thanks for your help. I made a duplicate photo (command+d) which is what I do to every picture I want to add effects to so I know which one's I have altered, so I was trying to send my friend the original and the one I added effects to so he could see the difference, and the only one he can see is the one I added effects to. I got on the phone with Apple care, and each picture has a different name ending in .jpg. I have tried several times to send the original, even by itself, and on my friends end, it shows an attachment, but nothing is there. Does anyone know why I can no longer send the original? I have also tried repairing my permission's but that didn't work. Thanks again for your help!

    Try exporting the original (File -> Export) and see it that works. If it does we’ll know the library is okay and can look at the mailing process. IF it doesn’t we’ll need to look at the Library.
    Also, how do you go about emailing? What app do you use?
    Regards
    TD

  • Re-sent Sent Email In Outlook 2010 Showing as Being Sent to the Previous Recipient

    When re-sending a previously sent item from within Outlook 2010, after a few seconds, the newly re-sent email is showing as being sent to the last recipient who the email is sent to. For example;
    I send an email to [email protected] I then want to send the email to [email protected].. so I click Sent Items, double click the email I have just sent, on the Message tab in the Move group, I click Actions and then click Resend This Message.
    I remove the original recipient and add the new recipient and click Send.
    I check my sent items a few seconds later and the newly sent email ([email protected]) is showing as being sent to [email protected] However, the re-sent email has actually be sent to the correct recipient. 
    I would appreciate any advice on this. 

    Hi,
    I assume this issue is related to the corrupted nickname cache. Does this issue occur with certain recipients? If so, I suggest you remove the nickname cache entries of these recipients:
    Open a new email message.
    Type the first few characters of the nickname cache entry that you want to remove from the cache.
    When the entry appears in the list of suggested names, move your mouse pointer over the name until it becomes highlighted, but do not click the name.
    When the “X” icon appears next to the highlighted name, click X to remove the name from the list.
    If this happens to all recipients, we can consider to reset the whole Outlook nickname cache for Outlook 2010:
    Open Outlook 2010.
    On the File tab, click Options. 
    Click the Mail tab. 
    Under Send Messages, click Empty Auto-Complete List.
    Click Yes.
    I hope the information is helpful to you.
    Regards,
    Melon Chen
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Misspelled word in the Automated Email being sent by Workflow system

    Hi Gurus,
    First of all I'm absolutely clueless about workflow so please don't be hating. :X
    I am trying to fix a bug in one of the email templates being sent to email addresses of our employees. The subject line have a misspelled word.
    Where do I start?
    Whats the tcode to go to these templates? And how do I search for the correct email to be corrected given that the information I have is the Subject line and the body of the email.
    Points will be awarded.
    Many thanks,
    Regards,
    Olekan Babatonde

    There are several transactions you can use to check a workflow template. Depending on what you want to do you could use PFTC, SWDD or SWDD_CONFIG.
    Finding the correct task from only the subject or content is much harder. The best thing to do is run SWI1 for the period the e-mails are generated. In the list you get is a column task which holds the tasknumber. Now you need to find the step which actually sends your e-mail and get the corresponding tasknumber. Using this in PFTC and the where used function you should be able to find the workflow (WS....). Then you can use SWDD_CONFIG to change the text.
    But if the e-mail is SAP standard I would raise an OSS message and ask them to make the correction.
    Regards,
    Martin

  • Verification of email to iCloud account not being sent

    Trying to set up a new MacBook Pro with an existing iTunes account email.  Verification email is not being sent - no email in inbox or JUNK mailboxes.  Why is this?

    Try calling them and asking for assistance:
    https://developer.apple.com/contact/phone.php
    Regards.

  • What quality loss is there when cam videos are compressed sent over email?

    What quality loss is there when sending videos taken with the iPhone 3GS over email? It seems that it's being compressed in preparation for being sent over email.

    Hi Ric,
    The Canopus ADVC-100 works fine with FCE. Here are a few tips -
    First, make sure you only connect or disconnect it from your Mac when both your Mac and the ADVC-100 are turned off. Make sure that your camera video-out is connected to the s-video port on the front of the ADVC-100. Ditto for the audio connections. Only DIP switch 2 (IRE level) should be in the ON position. Connect a FW cable from your Mac to the 6-pin FW port on the back of the ADVC-100.
    Second, once they are connected via FW, make sure the ADVC is turned on and actually in analog-in mode before you start FCE. I have often found the ADVC-100 resets this mode by itself after being turned off or idle for an extended time. (All you need to do is hit the silver button once or twice, depending on the current mode, in order to switch it into Analog-in mode.) If it is not in this mode, FCE will not detect the ADVC and will act as if there is no device connected. (Normally there is a warning message if FCE fails to find a camera or ADVC connected however if you turned off that message at some earlier time you would not see it again.)
    Third, you can use either the DV-NTSC or DV Converter easy setup in FCE. I have used both with my ADVC-100 and they both work.

Maybe you are looking for

  • Show more hours in calendar week view!?

    How do I show more hours in the calendar week view? In iOS 6 I could see 10 hours, but in iOS 7 I can only see 8 hours. This might nit seem like a big deal, but it's extremely annoying! And why can I not alter how many hrs I want to see in the prefer

  • No write permissions in my home directory

    Hi, I'm having a weird issue with my Mac. I am unable to create new files or directories in my home directory. For instance: Bergy Bit> cd ~ Bergy Bit> cp temp.txt temp1.txt cp: temp1.txt: Permission denied I can override this with sudo, but it's a m

  • Citrix client connection not working

    Hi I have a Wireless-g broadband router (wrt54gs) and i want to connect to citrix. I can ping the remote host but I can not connect to it using my citrix client. (not with LAN not with WIFI). If I put my computer directly behind the internet I can co

  • Just bought an ipod 5, Should i return it?

    I bought the ipod touch 5, blak, 64gb yesterday and i put all my apps music in it what not so i realized the when i was trying to go through pictures or type something everything lags or doesnt respond at all unless i keep insisting touching or press

  • Changing Site Name

    I changed my sites name and now iTunes isn't finding my rss feed. How do I fix this? Do I resubmit my site to iTunes? thanks, dgreen