Showing questions tagged: Show all questions

I am trying to send emails from a VBA code, and it works sometimes and sometimes not.

My code is as follows: thund = "C:\Program Files (x86)\Mozilla Thunderbird\thunderbird.exe " & _ "-compose " & """" & _ "to='" & email &… (read more)

My code is as follows: thund = "C:\Program Files (x86)\Mozilla Thunderbird\thunderbird.exe " & _

       "-compose " & """" & _
       "to='" & email & "'," & _
       "attachment='" & Attachment$ & "'," & _
       "subject='" & subj & "'," & _
       "body='" & fullBody$ & "'" & """"
   Call Shell(thund, vbNormalFocus)
   Sleep 3000
   AppActivate "thunderbird"
   SendKeys "^~", True
   Sleep 3000
   SendKeys "^{ENTER}", True
   Sleep 3000
   SendKeys "%fd", True

Asked by Phillip Abookire 5 days ago

Thunderbird keeps resetting the view settings for tasks

I changed the columns to be shown in the tasks view and have it sorted by due date. But every time Thunderbird starts, it resets my view settings for the tasks and shows … (read more)

I changed the columns to be shown in the tasks view and have it sorted by due date. But every time Thunderbird starts, it resets my view settings for the tasks and shows me the default columns and order. How can I fix it?

Asked by August3180 6 days ago