Re: Xmail BCC
Re: Xmail BCC
- Subject: Re: Xmail BCC
- From: Bruce Robertson <email@hidden>
- Date: Fri, 04 Mar 2005 10:37:03 -0800
>> I have gotten Xmail to work OK but I am having problems with BCC - none of
>> them seem to be going out.
>
> Works fine here... What is your code?
>
>> Also:
>> When do you use send raw mail vs send mail?
>
> I use "send raw mail" specifically for HTML email and inline attachments.
> And it can be used also for rich-text email and whatever kind of multipart
> message. That is: use "send raw mail" when "send mail" doesn't fit your
> needs ;-)
I'm experiencing several problems with Xmail. The example below works if
real values are plugged in. But
1. I get "no valid recipient" if I try to change change emailto use names
and angle brackets like this:
set emailto to {"Bill <email@hidden>", "Sue <email@hidden>",
"Sam <email@hidden>"}
2. I just can't find anything that work with bcc. Could you show me an
example based on this?
-- works (if used with real values)
set emailto to {"email@hidden",
email@hidden",email@hidden"}
set emailfrom to "email@hidden"
set smtpServer to "mail.somewhere.com"
set mailusername to "email@hidden"
set mailpassword to "obvious"
set mailauthentication to login --> or plain, login, crammd5, anonymous
set theSubject to "Plain test"
set plainTextPart to "This is plain text."
set AppleScript's text item delimiters to {","}
try
send mail to emailto from emaifrom subject theSubject body
plainTextPart SMTP server smtpServer username mailusername password
mailpassword authentication mailauthentication
on error number -2753
send mail to emailto from emaifrom subject theSubject body
plainTextPart SMTP server smtpServer
end try
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Applescript-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden