If you know the full dictionary well in advance, and it doesn't change between searches, you might try the following...
Index the dictionary. Each word (e.g. "hello") becomes a (key, data) tuple such as ("ehllo", "hello"). In the key, the letters are sorted alphabetically.
Good index data structures would include a trie (aka digital tree) or a ternary tree. A conventional binary tree could be made to work. A hash table wouldn't work. I'm going to assume a trie or a ternary tree. Note - the data structure must act as a multimap (you probably need a linked list of matched data items at each key-matched leaf).
Before evaluating for a particular string, sort the letters in the string. Then do a key search in the data structure. BUT a simple key search will only find words that use all letters from the original string.
Basically, a trie search matches one letter at a time, choosing a child node based on the next letter of the input. However, at each step, we have an extra option - skip a letter of the sorted input string and remain at the same node (ie, don't use that letter in the output). The obvious thing to do is a depth-first backtracking search. Note that both our keys and our input have the letters sorted, so we can probably optimise the search a bit.
A ternary tree version follows similar principles to a trie, but instead of multiple children per node, you basically have next-letter binary tree logic built into the structure. The search can be easily adapted - the options for each next-letter search being match the next input letter or discard it.
When you get runs of the same letter in the sorted input string, the 'skip a letter' option in the search should be 'skip to the next different letter'. Otherwise, you end up doing duplicate searches (during backtracking) - e.g. there are 3 different ways to use two out of three duplicate letters - you could ignore the first, the second, or the third duplicate - and you only need to check one case.
Optimisations might have extra details in the data structure nodes in order to help prune the search tree. E.g. keeping the maximum length of word tails in the subtree allows you to check whether your remaining part of your search string contains enough letters to bother continuing the search.
Time complexity isn't immediately obvious due to the backtracking.