Sending pics and videos through email

help whenever I try to send pics or video through email I'm getting the message " Cannot send mail. the server rejected one of the recipient's addresses." I've tried sending this from my mac(mobileme) account and my yahoo account. All the smtp servers are set to "on". I'm new to using the iphone and I was hoping that i'd at least be able to send pictures and my videos through email like i was able to on verizon.... all my accounts(yahoo,mac,and gmail) are denied doing this though. yahoo completely shuts off and closes mail when i attempt to do it and mac gives me the above mentioned message. I'm running 3.1. Please help me if you can I'm not sure how to change things and I don't want to risk losing everything I have by a hard reset or changing things and screwing up the phone....

The error message provided usually indicates the SMTP server being used is being blocked by the internet service provider being used at the time, but all the email accounts you are accessing have an authenticated SMTP server, and an authenticated SMTP server is usually not blocked by an internet server provider including when connected to AT&T's cellular network.
I don't know what you are calling a hard reset, but an iPhone reset does not affect any data or settings. An iPhone reset is done by pressing and holding the home button and the sleep/wake or on/off button simultaneously until you see the Apple logo and then release - ignoring the slide to turn off prompt when doing so.
If powering your iPhone off and on doesn't make any difference, try an iPhone reset.

Similar Messages

  • Sending pics and videos through MMS

    i was watching the tutorial video for this phone yesterday and the guy was sending pictures and videos through MMS but he didnt explain how he did it and i cant figure it out. can anyone fill me in?

    Craig Baron wrote:
    I don't get it either, it provides the capability to share low quality images to be viewed on tiny screens, at great expense. I was hoping the iphone would continue to omit MMS (and dump SMS), but if people are willing to pay for this non-sense...
    The iPhone camera (or just about any mobile phone camera) is just bad. It's not the fault of Apple, it's just that it would be incredibly expensive to make a phone with high end optics, CCD's, apertures and the such. But to use a bad camera to send low quality images makes no sense to me.
    Not to sound like a Luddite, but the dumbing down of our artistic media is just terrible. Music that used to be analog and had an infinite bit rate is now 128kbps. The depth and sound of that music just doesn't interest me. Now we go from infinite bits of photographic detail to a few million. Ansel Adams is probably appalled. Well, if he were alive, he would be.
    Look, AT&T is going to charge us for MMS. I wouldn't get it. If I want to take a low quality photo and send it, it's going by email.

  • Synchronizing pics and videos through itunes

    When I synchronize ipad with folder with pics and videos I can't transfer videos. But I put tick on synchronizing video from folder. Why does it happen? Thanks in advance.

    The video does need to be imported into iTunes first, then sync'd. Also, for example, if you have a .wmv it won't sync because iPads dont' play that format. So you may be trying to sync a format the device doesn't like.
    Import them into iTunes, then connect the device and choose to manually sync movies and then choose the ones you want to sync. iTunes should only show you videos that will go onto your ipad.

  • Pic and video text

    Does anyone know whe we be able to send pic and video through text on Iphone 3GS

    That would depend on what country you are in and your provider.
    In the U.S. "MMS support from AT&T coming in late summer. MMS is not supported on first-generation iPhone. Sending video via MMS is not supported on iPhone 3G."
    http://www.apple.com/iphone/softwareupdate/

  • Need to Generate PDF file and send it to customer through email-ALV report

    HI All,
       I am having data in Internal table.
    can we create PDF file with out having spool-request number.
    My requirement is whenever user clicks on execute button the output is generated in PDF format automatically and then send it to customer through email.
    I found few programs in SDN for generation PDF. But problem is everyone passing the spool request to the function module.
    spool request will be generated whenever we click on print button.
    Am I correct?.
    Is there any other way to create spool request automatically. If so we can pass the this spool number to the function module.
    Regards,
    vinod.

    hi
    For sending a mail, this code will help you.
    Pls reward if help.
    FORM send_mail_2 USING msgid msgno msgv1.
    mailuser oder Gruppe like sy-uname default 'Ruckerk'.
    DATA: express_hold_time LIKE sovaltime.
    DATA: text LIKE sotxtinfo.
    DATA: receiver LIKE somlreci1 OCCURS 0 WITH HEADER LINE.
    MESSAGE ZF100 (FTP an UDB fehlgeschlagen)
    text-msgid = msgid.
    text-msgno = msgno.
    text-msgv1 = msgv1.
    text-msgv2 = ' '.
    text-msgv3 = ' '.
    text-msgv4 = ' '.
    express_hold_time
    express_hold_time-days = 01.
    express_hold_time-h_min_sec = 240000.
    receiver
    receiver-receiver = mreceivr.
    Gruppe von Empfängern
    receiver-rec_type = 'C'.
    und Expressmeldung ausgeben
    receiver-express = 'X'.
    APPEND receiver.
    CALL FUNCTION 'MESSAGE_SEND_AS_MAIL'
    EXPORTING
    msgid = text-msgid
    msgno = text-msgno
    msgv1 = text-msgv1
    msgv2 = text-msgv2
    msgv3 = text-msgv3
    TABLES
    receivers = receiver.
    IF sy-subrc <> 0.
    WRITE:/ 'hat nicht geklappt', 'SY-SUBRC =', sy-subrc.
    ENDIF.
    PERFORM print_error_report.
    Fehlermeldung zum Abbrechen des Report's ausgeben.
    MESSAGE e398 WITH 'Jobabbruch' msgv1.
    ENDFORM. " SEND_MAIL_2
    Another Program:
    *& Report ZSENDEMAIL *
    *& Example of sending external email via SAPCONNECT *
    REPORT zsendemail .
    PARAMETERS: psubject(40) type c default 'Hello',
    p_email(40) type c default '[email protected]' .
    data: it_packing_list like sopcklsti1 occurs 0 with header line,
    it_contents like solisti1 occurs 0 with header line,
    it_receivers like somlreci1 occurs 0 with header line,
    it_attachment like solisti1 occurs 0 with header line,
    gd_cnt type i,
    gd_sent_all(1) type c,
    gd_doc_data like sodocchgi1,
    gd_error type sy-subrc.
    data: it_message type standard table of SOLISTI1 initial size 0
    with header line.
    *START-OF-SELECTION.
    START-OF-SELECTION.
    Perform populate_message_table.
    *Send email message, although is not sent from SAP until mail send
    *program has been executed(rsconn01)
    PERFORM send_email_message.
    *Instructs mail send program for SAPCONNECT to send email(rsconn01)
    perform initiate_mail_execute_program.
    *& Form POPULATE_MESSAGE_TABLE
    Adds text to email text table
    form populate_message_table.
    Append 'Email line 1' to it_message.
    Append 'Email line 2' to it_message.
    Append 'Email line 3' to it_message.
    Append 'Email line 4' to it_message.
    endform. " POPULATE_MESSAGE_TABLE
    *& Form SEND_EMAIL_MESSAGE
    Send email message
    form send_email_message.
    Fill the document data.
    gd_doc_data-doc_size = 1.
    Populate the subject/generic message attributes
    gd_doc_data-obj_langu = sy-langu.
    gd_doc_data-obj_name = 'SAPRPT'.
    gd_doc_data-obj_descr = psubject.
    gd_doc_data-sensitivty = 'F'.
    Describe the body of the message
    clear it_packing_list.
    refresh it_packing_list.
    it_packing_list-transf_bin = space.
    it_packing_list-head_start = 1.
    it_packing_list-head_num = 0.
    it_packing_list-body_start = 1.
    describe table it_message lines it_packing_list-body_num.
    it_packing_list-doc_type = 'RAW'.
    append it_packing_list.
    Add the recipients email address
    clear it_receivers.
    refresh it_receivers.
    it_receivers-receiver = p_email.
    it_receivers-rec_type = 'U'.
    it_receivers-com_type = 'INT'.
    it_receivers-notif_del = 'X'.
    it_receivers-notif_ndel = 'X'.
    append it_receivers.
    Call the FM to post the message to SAPMAIL
    call function 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    exporting
    document_data = gd_doc_data
    put_in_outbox = 'X'
    importing
    sent_to_all = gd_sent_all
    tables
    packing_list = it_packing_list
    contents_txt = it_message
    receivers = it_receivers
    exceptions
    too_many_receivers = 1
    document_not_sent = 2
    document_type_not_exist = 3
    operation_no_authorization = 4
    parameter_error = 5
    x_error = 6
    enqueue_error = 7
    others = 8.
    Store function module return code
    gd_error = sy-subrc.
    Get it_receivers return code
    loop at it_receivers.
    endloop.
    endform. " SEND_EMAIL_MESSAGE
    *& Form INITIATE_MAIL_EXECUTE_PROGRAM
    Instructs mail send program for SAPCONNECT to send email.
    form initiate_mail_execute_program.
    wait up to 2 seconds.
    if gd_error eq 0.
    submit rsconn01 with mode = 'INT'
    with output = 'X'
    and return.
    endif.
    endform. " INITIATE_MAIL_EXECUTE_PROGRAM

  • When I upgraded iphone to ios 5 and all of my pics and videos are gone. I remember doing this through iTunes. Can anyone help me please?

    When I upgraded iphone to ios 5 and all of my pics and videos are gone. I remember doing the upgrade through iTunes. I've looked in iPhoto and iTunes. Does anyone have any sugesstions of how I can get my pictures back?

    For some reason, did you fail to use the iPhone as intended?  Meaning copying the pictures and videos off the device regularly so that in the event the device is lost/stolen or simply fails, copies would exist on your computer?
    You can try restoring from the backup created prior to the update, but it is strongly recommended that pictures/videos be copied off the device on a regular basis.  Then any pics/vids that the user desires to keep on the device can be synced back via iTunes.

  • How can I transfer video taken with my iPhone to my iPad WITHOUT using a computer or iTunes? I'm going to Europe for a month and want to use my iPhone to take pics and video, then come back to the hotel room and use my iPad to edit/store each evening.

    How can I transfer video taken with my iPhone to my iPad WITHOUT using a computer or iTunes? I'm going to Europe for a month and want to use my iPhone to take pics and video, then come back to the hotel room and use my iPad to edit/store each evening. I don't want to use my iPad to take the video...too large/bulky. And I WON'T have a computer with me...I purchased the iPad to take with me so I could use the RDC to my home computer and avoid taking my computer at all. Is this possible?

    here is a cheaper solution than camera kit and a lot easier if you have WIFI available.
    I use the PhotoSync APP (I think its a $1.99) will transfer videos and photos over WIFI to any other IOS device or even PC/MAC. Great app since I like doing video and photos on my IPHONE and transfer to IPAD2 without synching through computer or doing cloud based storage.
    You can even send photos/videos from your MAC/PC to your IOS devices that way too. Makes it so much easier.
    Here is the link;
    http://www.photosync-app.com/

  • Can you send FCP project files through email?

    If all of a projects original capture footage is copied to another hard drive and then opened with the copied saved project file on another computer, will the "new" copied project work correctly?
    Can you send project files back and forth through email if your both working with the same exact copied footage?
    powermac g5 2.0 DC; powerbook g4   Mac OS X (10.4.7)  

    I use iChat to send project files. I've even used it to send a missing media file here and there (overnight, of course). < </div>
    iChat is tremendously under-used and misunderstood application. Being able to transfer h-u-g-e files without FTP, connecting to a server, connecting to the target Shared folder or drop box or stooping to the hassles of email is only one fascinating aspect of this cool little tool.
    The Macintosh OS is full of such things.
    bogiesan

  • Just got back from Paris and Israel and this update got my iphone 5 in recovery mode !!! please somebody tell me that I did not loose all my pics and videos !!!

    Please somebody help me !!!! I just got back from Paris and Israel and this update got my iphone 5 in recovery mode. I can't loose all my pics and videos from my vacations ??????????????????????????????????

    NOO it's not broken it is a software error. What you need to do is put your phone into what is called DFU mode or Device Firmware Upgrade Mode. What you have to do is connect your phone to itunes but do not start the sync process. Ignore any popups from itunes initially. When you are connected to itunes take your phone and hold down the home button and power button at the same time. Hold them down for about 30 seconds or so and you should see your device screen rollover to the black screen and disconnect from itunes once this happens it will reboot and automatically connect to iTunes, after this happens start the restore process through itunes and it should continue past the error message.
    * Also before you do this try ejecting your sim card if you have the at&t model if you are on Verizon ignore this. There is a small oval port on the right side of the phone with a small pinhole. Use a paperclip and insert it into the hole, the door will pop open. Take the door out, remove the sim card and wait 5 minutes then return the sim card back into the phone and begin the above process.
    If none of this works you may just want to bring it the genius bar and have them look at it. Good Luck and I hope this helps!

  • Forgot to transfer pics and videos to new phone before activating... HELP!!

    I need to know if there is some alternative way to pull my photos and video off my old phone now that it's been de-activated.  I backed up my contacts and those transferred but I completely forgot about pics and video.  Any suggestions would be appreciated. 
    -kvan

    If your phone is SD card capable then you can transfer them using it. If not you can reactivate the old phone, text them to your email, then to the new phone. Or possibly by connecting the old phone to the computer and downloading them that way.

  • LOst pics and videos after Lumia restart - HELP!!!

    Hi my Lumia 800 was hanging so i just restarted it and now see that all my pics and videos are gone. How do i get them back ? !! Please help.....

    Hi
    If you haven't backed them up through Skydrive or Zune then your pictures and videos are unfortunately lost.
    If you find this post helpful, a click upon the white star at bottom would always be appreciated.
    If it also solves your problem, clicking ACCEPT AS SOLUTION below it will benefit other users!

  • I recently had to swap out my iphone 4s and I am having problems restoring photos and videos from icloud.  I get a message on my phone that says " the URL you are requesting is not found on this server".  Pics and videos have been deleted too.

    I recently had to swap out my iphone 4s and I am having problems restoring photos and videos from icloud.  When I restored my phone from icloud, half of my pics and videos have been deleted, the pics that were restored on my phone are very blurry, and the videos won't play.  I get a message on my phone that says " the URL you are requesting is not found on this server".  I have erased and reset my phone twice, but every time I do it, more pics and videos are deleted.  I have backed up to icloud and iphoto, however, some of the pics are no longer on iphoto either.  Is there someway to get the videos to play on my phone again?  Make the photos not as blurry as they are now and to restore the pics and videos that have been lost?  I really would love to have them back, this phone is supposed to be the best and right now it doesn't seem to be.  Please help if you can.

    I too have noticed that once i restored from iCloud. Pictures blurry and videos wont play!
    Need help too!!

  • How do i find a recent backup from on icloud. i don't want to restore on my iphone, just view on my Pc and keep as file. looking for pics and video i recorded thanks

    How do i find a recent backup from on icloud. i don't want to restore on my iphone, just view on my Pc and keep as file. looking for pics and video i recorded thanks

    The password is set on the WiFi router providing the service, by the owner of the network to prevent unwanted "guests" accessing the network.  The only way to know it is to ask the owner permission to use the network.  Otherwise, you  have to find a free WiFi hotspot that doesn't require a password.

  • IPhone 6 will not sync music. This has become a problem since using itunes 12. It also will not sync all my pics and video's with my iPad 4  either. Removed and re-installed iTunes with no improvement.

    iPhone 6 will not sync music. This has become a problem since using itunes 12. It also will not sync all my pics and video's with my iPad 4  either. Removed and re-installed iTunes with no improvement. It stops at last step saying waiting for items to copy and just sits there.  The iPad finish the sync, but some video's are missing.

    iPhone 6 will not sync music. This has become a problem since using itunes 12. It also will not sync all my pics and video's with my iPad 4  either. Removed and re-installed iTunes with no improvement. It stops at last step saying waiting for items to copy and just sits there.  The iPad finish the sync, but some video's are missing.

  • How do I transfer my pics and videos to my I-tunes account from my LG Dare?

    How do I transfer my pics and videos to my I-tunes account from my LG Dare?

    Downloading previously purchsed music from iCloud is based on your iTunes ID, not your iCloud ID.  (It uses "iTunes in the Cloud", which has nothing to do with your iCloud account, just your iTunes ID.)
    If you are using a different iTunes ID on your iOS devices than the one you used to purchase the music, you'll have to sync the music to your devices using iTunes.  If they are using the same iTunes ID, you can download the music to your devices as explained here: http://support.apple.com/kb/ht2519.

Maybe you are looking for