[quote=309289:@Roger Clary]I need to correct myself. I had a fit of a time trying to add a new address in mail last night on my MBP running Sierra and blamed the wrong thing. Added the address to another Mac running El Cap. No problem. Added the address to my iPad and iPhone both on 10.2. No problem. My MBP still does not connect to the address correctly. So to correct my original statement.
I hate SIERRA with a burning hot passion.[/quote]
I had the same problem last week. Don’t add the account with Systempreferences->Internet Accounts. Do it within mail with Add Account.
Incomeing mail then worked. I had to manually configure the sending SMTP-Server in Mail->Preferences->Accounts
Select Account, Server-Settings, click outgoing Account pop-up, choose Edit SMTP Server List
I had to change the port, choose authentification method and add credentials.
[quote=309336:@Beatrix Willius]@Sam: try to delete the Envelope Index files or the LSMMap2.
[/quote]
this works very nice when mail hangs up. also vacuum the sql database like I explained above.
vacuum against slowdowns, delete enveloppe when mail hangs.
Ok, thank you for your help. But that all isn’t what I mean. Using things like shortcuts is somethink else.
I just want to klick on reply, and there should be a text like “Hi Marius Noetzel!” in the First line.
Using a shortcut for that feels more complex than just typing that by hand.
keyboard maestro allow you to make a macro that insert text, like 'Hi ’
then also insert the name of the current mail sender to the same text,
then insert a “!”
download the demo and try by yourself : https://www.keyboardmaestro.com/main/
Script idea is a pretty good one. You’d probably need to put the script in the script menu and run it from there, or attach a keyboard shortcut to it. Here’s the beginning of a script. All it does so far is get the name in the reply to field. To make this robust you’d need lots of conditions. What to do if there were cc addresses, how to handle addresses that aren’t fully formatted, what to do when there’s only an email and no actual name, etc. I think it could get rather complicated pretty quickly but you could make it work if you have relatively defined circumstances where you’d use it.
tell application “Mail”
set theSel to (get selection)
repeat with theMessage in theSel
set theName to extract name from reply to of theMessage
log theName
end repeat
end tell
[quote=310424:@Marius Dieter Noetzel]Ok, thank you for your help. But that all isn’t what I mean. Using things like shortcuts is somethink else.
I just want to klick on reply, and there should be a text like “Hi Marius Noetzel!” in the First line.
Using a shortcut for that feels more complex than just typing that by hand.[/quote]
Yeah that would be cool!