The following AddRecipient line was copied & pasted directly from the document "AppleScript How-To.rtfd", but fails to produce the desired results.
Produces:
Notice that the first name is correctly in the 'Firstname' field (yay!), but the last name "Smith" has:
1.) also been included in the Firstname field, even though it should be in the Surname field.
2.) been truncated to "S"
3.) been concatenated with the trailing few letters from the end of the email address.
Code:
tell application "MaxBulk Mailer"
SelectList "test_list"
AddRecipient "John Smith <[email protected]>,[email protected]"
SaveList
end tell
Produces:
Notice that the first name is correctly in the 'Firstname' field (yay!), but the last name "Smith" has:
1.) also been included in the Firstname field, even though it should be in the Surname field.
2.) been truncated to "S"
3.) been concatenated with the trailing few letters from the end of the email address.