Any idea why setSubject() is not working as expected??

I am using SmtpMessage's setSubject:
setSubject( "some subject" )
but the email I receive says "no subject"
I have made sure that the subject is being set correctly in the code.
The email is received and the content of the email (set via setContent) is exactly as I had set it.
But the subject is missing even though I set it.
Any idea why this is happening?

Nope.
Is there anything unusual about the text you're using
for the subject? Any newlines, for instance?
If you turn on session debugging, do you see the
subject in the protocol trace?

Similar Messages

  • IE6/CSS browser issue- any idea why this is not working?

    http://www.wilmerdds.com/test/index.htm
    If you look at the left column, you will see a black box.  It shouldn't be black. it should match the bg color of the column.  Any idea why this is happening?

    Hi
    The problem is that you are using a png, and IE6 does not support png transparency. You could try using the iepngfix from - http://www.twinhelix.com/css/iepngfix/.
    PZ

  • Any Ideas Why LASTDATE Isn't Working as Expected?

    I have a measure ... 
    Inventory Quantity:=CALCULATE (
    SUM ( [PosNetProjdQty] ),
    LASTDATE ( Calendar[CLNDR_WK_BEG_DT] )
    ... which when added to a Pivot Table I'd expect a YEAR subtotal to equal the December Ending MONTH value.  Instead, it's summing all of the months in the year.  Any clues as to why this might not be performing as expected?

    Hi Mark,
    Is this still an issue? LASTDATE is a very peculiar DAX function as explained
    here.  Is there any chance that you could provide a sample workbook with non-sensitive data that can be used to look into the unexpected behaviour in your scenario?
    Regards,
    Michael Amadi
    Please use the 'Mark as answer' link to mark a post that answers your question. If you find a reply helpful, please remember to vote it as helpful :)
    Website: http://www.nimblelearn.com, Twitter:
    @nimblelearn

  • In Icloud I can't see my "numbers" icon which i need to select "tick" to transfer data to my other devices via icloud. any ideas why it's not showing up?

    In Icloud on my imac I can't see my "numbers" icon which i need to select "tick" to transfer data to my other devices via icloud. any ideas why it's not showing up?

    You have to do it app wise, which means that the icon won't show up in settings, but you will be able to move files from your local drive to iCloud via the Numbers app (move... > choose the iCloud option).
    It requires that you set up the same iCloud account on all your devices and that you have the latest version of Numbers on all your devices as well.

  • Any ideas why the sound only works on about half of my apps?

    Any ideas why the sound on my ipad only works on about half of my apps?

    The problem of tracks becoming de-linked between iTunes and the music files in your iTunes music folder happens for different reasons - this seems to come up fairly commonly in this forum.
    The solution can be to locate each song in the iTunes library, as you mentioned - or, but wait, before I get to that...
    trouble finding the original track in your iTunes music folder? maybe look for it under compilations, or if not using the 'group compilations preference' then look in the folder under the songs artist name, but what song artist name iTunes uses depends on what you have in the metedata tag spot for album artist or song artist. Any varyation in artist name spelling, in the menu item 'get info' metadata for any selected individual track will cause iTunes to create that as a separate artist folder in the library, even names like 'various' or any difference at all (even the word 'the' can change where in your iTunes music folder a track gets placed by iTunes). You can try to use the finder function of find file (finder munu item outside of iTunes) to locate hard to find items.
    Back to how to re-link any de-linked tracks .
    There may be scripts that can help re-link de-linked music files - or, at least provide you a list of such files, Scripts are easy to install and use...
    at Dougs Scripts, there is one called iTunes Track CPR that might work
    http://dougscripts.com/itunes/scripts/ss.php?sp=itunestrackcpr
    or, if you just want a list of de-linked tracks, go to
    http://dougscripts.com/itunes/
    and find the script called List MIA's, this will create a text file listing all de-linked tracks
    if you review the thread at
    https://discussions.apple.com/thread/3633708
    also the thread at
    https://discussions.apple.com/message/17513078#17513078
    you may find more insight into dealing with this kind of issue there, although some of that thread may not apply to your case, aspects of it might help.
    Good luck.

  • Any ideas why this won't work?

    I appreciate all the help this board provides. I've learned a ton coming here as I continue to grow my SQL knowledge.
    I need this query to look at the Work_order table and pull any lines that were closed during the prior day. Then I need it to look at the Stock_Tran table and pulled and lines that had a Date_Trans during the prior day. That will give me the work completed and the work that was partially completed during the prior day.
    I'm getting an error message at the line I've underlined and bolded that work_order.partno is an invalid identifier (I'm sure that's not the only error). The query worked until I started adding the Stock_Tran table.
    Any ideas would be greatly appreciated!!!
    SELECT
    SITECODE
    , WORK_ORDER_NUMBER AS "WO #"
    , partno
    , WO_PRIORITY AS "PRIORITY"
    , QTY_WORK_ORDER
    , QTY_FINISHED
    , TRUNC(WO_RELEASE_DATE) AS "RELEASE DATE"
    , TRUNC(WO_START_DATE) AS "START DATE"
    , TRUNC(WO_CLOSED_DATE) AS "CLOSED DATE"
    , STOCK_TRAN.QTY_CHANGE
    FROM
    WORK_ORDER
    , (SELECT SUM(QTY_CHANGE) AS "QTY WORKED" FROM STOCK_TRAN
    WHERE
    SITECODE = 'FCI'
    AND STOCK_TRAN_CODE = 'P'
    AND DATE_TRAN = TRUNC(SYSDATE - 1)
    AND WORK_ORDER.SITECODE = STOCK_TRAN.SITECODE
    AND WORK_ORDER.PARTNO = STOCK_TRAN.PARTNO)_
    WHERE
    WORK_ORDER_TYPE = 'K'
    AND SITECODE = 'FCI'
    AND (TRUNC(WO_CLOSED_DATE) = TRUNC(SYSDATE - 1) OR STOCK_TRAN.DATE_TRAN = TRUNC(SYSDATE -1) )
    AND QTY_FINISHED >0
    ORDER BY WO_PRIORITY DESC

    Hi,
    847497 wrote:
    That gets me closer! Thanks. Now I've getting an error at the line highlighted below.
    Here's the error I'm getting: ORA-00904: "STOCK"."QTY_CHANGE": invalid identifier
    SELECT
    SITECODE
    , WORK_ORDER_NUMBER AS "WO #"
    , partno
    , WO_PRIORITY AS "PRIORITY"
    , QTY_WORK_ORDER
    , QTY_FINISHED
    , TRUNC(WO_RELEASE_DATE) AS "RELEASE DATE"
    , TRUNC(WO_START_DATE) AS "START DATE"
    , TRUNC(WO_CLOSED_DATE) AS "CLOSED DATE"
    *  , STOCK.QTYCHANGE*_I assume you mean this is the line where the error message points. It would be better to mark it with a comment, like this:
    ,       STOCK.QTY_CHANGE                  -- *****  ORA-00904 occurs here *****  FROM
    WORK_ORDER
    , (SELECT SUM(QTY_CHANGE) AS "QTY WORKED"
    , sitecode
    , partno
    , date_tran
    FROM STOCK_TRAN
    WHERE SITECODE = 'FCI'
    AND STOCK_TRAN_CODE = 'P'
    AND DATE_TRAN = TRUNC(SYSDATE - 1)
    GROUP BY sitecode, partno ) stockThe only columns in the stock "table" (it's acutally an in-line view) are "QTY WORKED", SITECODE, PARTNO amnd DATE_TRAN.
    If QTY_CHANGE is a column in the STOCK_TRAN table, then yiou can include it in the SELECT clause of the in-line view, and that will allow you to use it in the main query.
    WHERE stock.sitecode = work_order.sitecode
    AND stock.partno = work_order.partno
    AND WORK_ORDER_TYPE = 'K'
    AND work_order.SITECODE = 'FCI'
    AND (TRUNC(WO_CLOSED_DATE) = TRUNC(SYSDATE - 1) OR STOCK.DATE_TRAN = TRUNC(SYSDATE -1) )
    AND QTY_FINISHED >0
    ORDER BY WO_PRIORITY DESC

  • Any Ideas Why Workspace Won't Work?

    Okay, so it's been bugging me too long to simply continue ignoring the problem... and even still after updating all of the CS6 applications, the problem of the Workspace always being messed up every time I launch CS6 Photoshop 13.0.1 x64 Extended on my Win 7 64-bit machine persists. Any suggestions will be appreciated.
    To help communicate the problem and better understand it, I've prepared this series of screen captures.
    The two Workspaces used in these experiments were 1) VKB's Workspace, a preexisting Saved workspace and 2) Essentials, the preexisting workspace defined by Adobe.
    The experiments consisted of launching the application, observing that the workspace was messed up (Exhibits A, C, D and E), then Resetting the Workspace, closing the application and then opening it again.
    During the course of these experiments I updated the (3) CS6 applications that the updater indicated had available updates, one of which was PS. The announcement on the page (http://forums.adobe.com/community/photoshop/general) indicated 13.0.1.1 was available, but after updates were install, PS reports what I thought I remembered seeing earlier; i.e., 13.0.1 (and not 13.0.1.1). Restarted the system, system would not shut down, would not restart, no video signal, had to give it the finger and force hard restart. Launched PS app, did another check for updates - all apps up to date.
    Began experiments anew - nothing different - Workspace still doesn't work like it always had behaved up until when this issue first presented... maybe a month or three weeks ago - not really sure exactly when.
    The Resetting was done from both the menu Window, Workspace, Reset route and the afforded pull down option (upper right corner).
    Additionally, during the experiments I created a new workspace, also named VKB's Workspace, replaced the earlier one, more experiments, more of the same problem.

    Any ideas will be appreciated.
    Thanks!
    Kelly

  • Any ideas why Bonjour might not link

    This may be better directed to iStat but I use their monitoring app, iStat Pro on a iPhone 4 and the iStat server on both a Mac Pro (10.6.8) and Macbook Pro Retina (10.8.2)
    All devices are on the same network, the two macs are wired (MBP retina via thunderbolt) the phone is obviously wireless. From the phone I'm able to see/load the system stats for the MacPro desk top but I'm not able to do the same with Macbook.I thought Bonjour was default and forget protocol but I'm missing something. Any ideas?
    Thanks

    There are two good MJPEG CODEC's that work with the Nikon D-90 material and will allow editing in PrPro. The MainConcept and the Morgan have done well. Do not know how well PE will handle it, but if not well, Steve's advice will get it into PE as a DV-AVI Type II file.
    Good luck,
    Hunt

  • Any idea why British Eurosport stopped working. Have reinstalled app and reset network settings.

    The app suddenly stopped working.
    Any ideas ?

    Yes to 1st and No to 2nd.
    I already contacted British Eurosport , it was them that suggested reinstalling the app.
    I don't know of anything that has changed since it did work.
    Thanks for your reply.

  • Any ideas why Smart Zoom only working in Safari and not TextEdit, etc.

    I like using Smart Zoom, but it only works in Safari for me. Is anyone else experiencing this or have a suggestion for fixing this? I thought it was supposed to work in TextEdit and some other Apple programs.

    System Preferences > Universal Access > Seeing. Is Zoom turned on?
    Also look in System Preferences > Trackpad > Scroll & Zoom tab > uncheck Smart zoom
    Or System Preferences > Mouse  > Smart Zoom.
    EDIT: Just tested Text Edit and it won't respomd to a SZ

  • Any ideas why PE7 will not handle avi from Pentax Optio w60?

    I am able to work with the avi video files on all of my other software editing programs but PE7 is my favorite. For some reason when I import the avi files from my SD card / Pemtax Optio W60 camera I can only hear the audio in the editing window...no video.
    I am not 100% on this but I have seen some postings on the Pentax forum that says the Pentax AVI video is NOT using DiVX or XvID compression... it is saved using the DV codec. I am not certain that is the codec used on this model...or what that would mean anyway.
    I would appreciate any and all information, suggestions and recommendations to resolve this.

    There are two good MJPEG CODEC's that work with the Nikon D-90 material and will allow editing in PrPro. The MainConcept and the Morgan have done well. Do not know how well PE will handle it, but if not well, Steve's advice will get it into PE as a DV-AVI Type II file.
    Good luck,
    Hunt

  • Any idea, why i can not use "intersect"

    Hi all,
    I am trying to get a intersection of two queries by using the intersect command. B1 does not execute a query with this function. Has anyone an idea, how to do a intersection in B1 query generator ?
    I am using this query :
    SELECT T1.* FROM CRD1 T1
    Intersect
    SELECT T0.* FROM CRD1 T0 WHERE T0.Street Like '%%@%%'
    Regards Steffen

    hi steffen,
    Use Join operator
    SELECT T1.*,T0.* FROM CRD1 T1 JOIN CRD1 T0 ON T0.CardCode = T1.CardCode
    WHERE T0.Street Like '%%[%0]%%'
    Correct me if i am wrong.
    Edited by: Jeyakanthan A on May 29, 2009 3:29 PM

  • Any idea why Preview won't work for opening PDF files with this OS?

    For some reason, after the last update to Mavericks 10.9.3, any time I attempt to open a PDF using Preview, the file will not open.  No response from the system.  Any recommended solutions?  Thanks in advance!

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    The title of the Console window should be All Messages. If it isn't, select
    SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
    View ▹ Show Log List
    from the menu bar at the top of the screen.
    Click the Clear Display icon in the toolbar. Then try the action that you're having trouble with again. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    ☞ The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    ☞ Some private information, such as your name, may appear in the log. Anonymize before posting.

  • HT204655 what i add pictures to photos  then i go to face book to add a photo and it is not there  if i restart my computer the pictures are then in photos using facebook any idea why they are not immediatly availible?

    i go to post on facebook and the piccture i have imprted to photos and i see in photos is not inmy photos to add to post in facebook
    if i restart my computer then they are there  any suggestions appreciated thank you for your time

    I would try quitting your browser and closing down Facebook rather than restarting the whole system.
    My guess would be that, if you have been using Facebook and have already accessed the Photos library, then a snapshot of the library directory (and therefore, pictures) has been taken by Facebook. That may not be updated if you then switch to Photos and import something new, or make changes there, and then switch back to Facebook.
    Restarting Safari, or whatever browser you use, and then re-visiting Facebook may, when you try to add the new picture, refresh the directory and make the change(s) visible.
    This would be my guess, and suggestion.

  • Hi I just downloaded movies from itunes via my ipad but they aren't synching wtih my ipod, any suggestions why it's not working? Thanks

    about to get on a flight and just can't get any films to synch to the ipod I'm taking, would appreciate any help!

    iTunes: Frequently asked questions about viewing and syncing videos
    iTunes: May be unable to transfer videos to iPhone, iPad, or iPod
    What model iPod? The 3G and earlier can only sync/play SD version, not HD

Maybe you are looking for